@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

.nav-link-nukema {
    font-weight: bold;
    color: white;
    font-size: 15px;
}

.nav.container {
    width: 100%;
}

.nukema-nav {
    background-color: #003358;
    max-height: 80px;
    margin-bottom: 0 !important;
}
.navbar-brand {
    float: left;
    height: unset !important;
    padding: unset !important;
    font-size: 14px;
    line-height: 20px;
}

.auth-container {
    display: flex;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #003358;
    min-height: calc(100vh - 80px);
    width: 100%;
}

.auth-container .form-column {
    width: 50%;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    padding: 40px;
    gap: 32px;
}

.auth-container .form-wrapper {
    width: 100%;
    margin-bottom: auto;
    margin-top: auto;
}

.form-column .form-topbar {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 32px;
    justify-content: flex-end;
    margin-bottom: auto;
}

.form-column .form-topbar a {
    margin-left: auto;
}

.auth-container a,
.form-column .form-topbar a,
.form-column .form-bottombar a {
    color: #1971E6 !important;
    font-weight: 700;
    text-decoration: none !important;
    cursor: pointer;
}

.auth-container a:hover,
.form-column .form-topbar a:hover,
.form-column .form-bottombar a:hover {
    color: #1971E6 !important;
    text-decoration: underline !important;
}

.form-wrapper .form-container {
    margin: auto;
    max-width: 400px;
}

.form-wrapper .form-container .logo-link {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.form-wrapper .form-container .logo-link img {
    width: 133px;
}

.form-wrapper .form-container h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    text-align: center;
    font-family: "Lato", sans-serif;
    color: #003358;
}

.form-wrapper .form-container .subtitle {
    color: rgba(0, 51, 88, 0.6);
    margin-top: 16px !important;
    margin-bottom: 32px !important;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    font-family: "Lato", sans-serif;
}

.form-wrapper .form-container .header-wrapper {
    margin-bottom: 32px;
}

.form-wrapper .form-container .header-wrapper p {
    margin-bottom: 16px;
    text-align: center;
}

.form-wrapper .form-container .fields-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-bottom: 40px;
}

.form-wrapper .form-container .fields-wrapper input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(0, 51, 88, 0.8);
    border: solid 1px #E1E8F0;
    border-radius: 8px;
    height: auto;
    box-shadow: none;
}

.form-wrapper .form-container .fields-wrapper .btn-primary {
    border: none;
    color: white;
    background-color: #1971E6;
    font-size: 16px;
    border-radius: 8px;
    font-weight: 700;
    padding: 12px;
    background-image: none;
}

.form-wrapper .form-container .fields-wrapper .btn.disabled,
.form-wrapper .form-container .fields-wrapper .btn[disabled],
.form-wrapper .form-container .fields-wrapper fieldset[disabled] .btn {
    background-color: #E1E8F0 !important;
    border: none !important;
    color: rgba(0, 51, 88, 0.8)!important;
}

.form-wrapper .form-container .fields-wrapper input::placeholder {
    color: rgba(0, 51, 88, 0.6);
    opacity: 1;
    font-style: normal;
}

.checkbox input[type=checkbox],
.checkbox-inline input[type=checkbox],
.radio input[type=radio],
.radio-inline input[type=radio] {
    position: static;
    margin-left: 0;
}

.checkbox .hidden-checkbox,
.hidden-input {
    display: none !important;
}

.checkbox p {
    text-align: center;
}

.form-column .form-bottombar {
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container .decoration-wrapper {
    width: 50%;
    min-height: 100vh;
    padding: 40px;
    background-color: #E9F4FE;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container a.stay-logged {
    padding: 8px 12px;
    display: flex;
    width: 100%;
    margin-top: 16px;
    gap: 8px;
    align-items: center;
    background-color: white;
    border-radius: 6px;
    color: #717D96 !important;
    text-decoration: none !important;
    cursor: pointer;
    border: solid 1px #E1E8F0;
    transition: border .3s ease, background-color .3s ease, color .3s ease;
    justify-content: center;
    font-weight: 500;
}

.auth-container a.stay-logged:hover {
     background-color: #1971E6;
     color: white !important;
     border: solid 1px #1971E6;
    font-weight: 700;
 }

a.highlight-link {
    font-weight: 700;
    text-decoration: underline;
}

@media screen and (max-width: 789px) {
    .auth-container .form-column {
        width: 100%;
        padding: 40px 24px;
    }

    .auth-container .decoration-wrapper {
        display: none;
    }
}

@media screen and (max-width: 450px) {
    .auth-container .form-column {
        padding: 40px 15px;
    }
}