@font-face {
    font-family: 'Futura LT';
    src: url('/fonts/FuturaLT-Light.woff2') format('woff2'),
    url('/fonts/FuturaLT-Light.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura LT';
    src: url('/fonts/FuturaLT.woff2') format('woff2'),
    url('/fonts/FuturaLT.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura LT';
    src: url('/fonts/FuturaLT-Bold.woff2') format('woff2'),
    url('/fonts/FuturaLT-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Josefin Sans';
    src: url('/fonts/JosefinSans-Light.woff2') format('woff2'),
    url('/fonts/JosefinSans-Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Josefin Sans';
    src: url('/fonts/JosefinSans-SemiBold.woff2') format('woff2'),
    url('/fonts/JosefinSans-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Josefin Sans';
    src: url('/fonts/JosefinSans-Bold.woff2') format('woff2'),
    url('/fonts/JosefinSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Josefin Sans';
    src: url('/fonts/JosefinSans-LightItalic.woff2') format('woff2'),
    url('/fonts/JosefinSans-LightItalic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

a, a:active, a:visited {
    color: #D21317;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}


*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
}


table {
    border-collapse: collapse;
    border-spacing: 0;
}

a,
a:visited,
a:hover {
    text-decoration: none;
}


body {
    font-family: 'Josefin Sans', Arial, sans-serif;
    line-height: 1;
    display: grid;
    place-content: center;
    min-height: 100vh;
    background-image: url('/img/login-background.jpg');
    background-color: #fff;
    background-size: cover;
}


.box {
    max-width: 600px;
    background-color: #1D1D1B;
    padding: 60px 100px;
    color: white;
    clip-path: polygon(100% 0, 100% calc(100% - 75px), calc(100% - 75px) 100%, 0 100%, 0 0);
}

.box__header {
    text-align: center;
    margin-bottom: 30px;
}

.box__content {
    display: grid;
    gap: 20px;
}

.box__field label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 300;
}

.box__field input {
    display: block;
    width: 100%;
    background-color: white;
    border: 1px solid #D9D9D9;
    padding: 10px 16px;
    font: inherit;
    font-family: 'Futura LT', Arial, sans-serif;
    font-size: 16px;
}

.box__action {
    display: grid;
    place-content: center;
    gap: 20px;
    text-align: center;
}

.box__action button {
    padding: 14px 24px;
    display: inline-flex;
    align-content: center;
    background-color: #D21317;
    color: white;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    border: 0;
    text-transform: uppercase;
    cursor: pointer;
    clip-path: polygon(100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 0);
    transition: background-color 150ms;
}

.box__action button:hover {
    background-color: #bd0f12;
}

.box__action a {
    color: white;
    font-size: 14px;
    text-decoration: underline;
}

.box__action a:hover {
    text-decoration: none;
}

.box__title {
    font-family: 'Josefin Sans', Arial, sans-serif;
    font-size: 28px;
    font-weight: 300;
    line-height: 38px;
    text-align: center;
    text-transform: uppercase;
}

.box__title strong {
    font-family: 'Josefin Sans', Arial, sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 40px;
    text-align: center;
    text-transform: uppercase;

}

.box__text {
    font-family: 'Futura LT', Arial, sans-serif;
    font-size: 16px;
    font-weight: 200;
    line-height: 22px;
    text-align: center;

}

.alert {
    display: flex;
    gap: 10px;
    padding: 10px 10px;
}

.alert b {
    font-weight: 500;
}

.alert svg {
    flex-shrink: 0;
}


.alert-danger {
    background-color: #D21317;
    color: #ffe0e0;
}

.alert-success {
    background: white;
    color: black;
    border: 1px solid #D21317;
}

.alert-success svg {
    path {
        fill: #D21317;
    }
}


label[for="change_password_form_plainPassword_second"] {
    margin-top: 20px;
}