@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap');

html,
body {
    height: 100%;
    margin: 0;

    display: flex;
    flex-direction: column;
    background-image:
        linear-gradient(
            rgba(248, 250, 252, 0.88),
            rgba(238, 242, 246, 0.92)
        ),
        url('../media/oms_bigimage1.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    /* background:
        radial-gradient(
            circle at 15% 20%,
            rgba(184, 137, 85, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(184, 137, 85, 0.06),
            transparent 30%
        ),
        linear-gradient(135deg, #f8fafc, #eef2f6); */
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #1f2937;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Open Sans', sans-serif;
    color: #172033;
}

h1,
h2 {
    font-weight: 700;
}

h3,
h4,
h5,
h6 {
    font-weight: 600;
}

p,
span,
label,
li {
    font-weight: 400;
}

strong,
b {
    font-weight: 700;
}


button,
input,
select,
textarea {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}


table {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

th {
    font-weight: 600;
}

td {
    font-weight: 400;
}



.btn,
button {
    font-weight: 600;
}

.badge {
    font-weight: 600;
}

.nav-link {
    font-weight: 500;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.container {
    flex: 1 0 auto;
}


/* =========================================================
   LOGIN PAGE CONTAINER
========================================================= */

body > .container {
    width: 100% !important;
    min-height: 100vh;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    box-sizing: border-box;
}

#login-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
}


/* =========================================================
   PREMIUM LOGIN CARD
========================================================= */

.auth-form {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    padding: 35px 40px 35px;
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #e7e2dc;
    border-radius: 20px;
    box-shadow:
        0 25px 60px rgba(15, 23, 42, 0.09),
        0 8px 20px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    box-sizing: border-box;
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}


/* Premium top line */

.auth-form::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 4px;

    background: linear-gradient(
        90deg,
        #b88955,
        #d2aa7a,
        #b88955
    );
}


/* Card hover */

.auth-form:hover {
    transform: translateY(-2px);

    box-shadow:
        0 28px 65px rgba(15, 23, 42, 0.11),
        0 10px 25px rgba(15, 23, 42, 0.05);
}


/* =========================================================
   LOGIN TITLE
========================================================= */

.form-title {
    margin: 0 0 25px;
    text-align: center;
    color: #172033;
    font-size: 25px;
    letter-spacing: -0.5px;
}


.auth-form label {
    display: block;
    margin-bottom: 8px;
    color: #344054;
    font-size: 15px;
    font-weight: 600;
}

.auth-form .form-control {
    width: 100%;
    height: 51px;
    padding: 0 15px;
    border: 1px solid #d9dee7;
    border-radius: 11px;
    background: #ffffff;
    color: #172033;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    box-shadow: none;
    outline: none;
    box-sizing: border-box;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.auth-form .form-control:hover {
    border-color: #c5ccd6;
}


/* Input focus */

.auth-form .form-control:focus {
    border-color: #b88955;

    background: #ffffff;

    box-shadow:
        0 0 0 4px rgba(184, 137, 85, 0.10);

    outline: none;
}


/* Placeholder */

.auth-form .form-control::placeholder {
    color: #a3acba;
}


/* =========================================================
   PASSWORD FIELD
========================================================= */

.auth-form .position-relative {
    position: relative;
}


.auth-form .position-relative .form-control {
    padding-right: 48px;
}


.password-toggle {
    position: absolute;

    right: 15px;
    top: 50%;

    transform: translateY(-50%);

    z-index: 10;

    color: #98a2b3;

    font-size: 16px;

    cursor: pointer;

    transition: color 0.2s ease;
}


.password-toggle:hover {
    color: #b88955;
}


.password-toggle i {
    pointer-events: none;
}


.auth-form .form-check {
    display: flex;
    align-items: center;
    gap: 7px;
}


.auth-form .form-check-input {
    width: 16px;
    height: 16px;
    margin: 0;
    border: 1px solid #cbd2dc;
    cursor: pointer;
    box-shadow: none;
}


.auth-form .form-check-input:checked {
    background-color: #b88955;
    border-color: #b88955;
}


.auth-form .form-check-input:focus {
    border-color: #b88955;
    box-shadow:
        0 0 0 3px rgba(184, 137, 85, 0.10);
}


.auth-form .form-check-label {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.form-check {
    display: block;
    min-height: 0rem !important;
    padding-left: 0em !important;
    margin-bottom: 0rem !important;
}

.auth-form a {
    color: #a87546;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}


.auth-form a:hover {
    color: #8e613b;
    text-decoration: underline;
}

.auth-form .btn-primary {
    width: 100%;
    height: 51px;
    padding: 0 20px;
    border: none;
    border-radius: 11px;
    background: linear-gradient(
        135deg,
        #b88955,
        #a87645
    );
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.auth-form .btn-primary:hover {
    background: linear-gradient(
        135deg,
        #c0925e,
        #ad7b49
    );
    transform: translateY(-1px);
    box-shadow:
        0 12px 25px rgba(184, 137, 85, 0.28);
}


/* Button active */

.auth-form .btn-primary:active {
    transform: translateY(0);
    box-shadow:
        0 5px 12px rgba(184, 137, 85, 0.20);
}


.auth-form .btn-primary:focus {
    box-shadow:
        0 0 0 4px rgba(184, 137, 85, 0.14),
        0 8px 18px rgba(184, 137, 85, 0.22);
}


.auth-form .alert {
    border: 0;
    border-radius: 10px;
    font-size: 15px;
    margin-bottom: 22px;
}

.logo-top {
    display: block;
    max-width: 180px;
    margin: -20px auto 0px;
}

.auth-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 22px;
    font-size: 14px;
}


.link-button {
    background: none;
    border: none;
    padding: 0;
    color: #b27f4e;
    cursor: pointer;
    font-weight: 600;
    transition: color 0.2s ease;
}


.link-button:hover {
    color: #94683f;
    text-decoration: underline;
}

.honeypot {
    display: none !important;
}

.loginfooter {
    width: 430px !important;
    margin-top: 15px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;

    align-self: flex-start !important;

    text-align: center;
    font-size: 12px;
    color: #667085;
}

.loginfooter a {
    color: #b48454 !important;
    font-weight: 700;
    text-decoration: none;
}


footer {
    flex-shrink: 0;
    /* background: #ffffff;
    border-top: 1px solid #e5e7eb; */
    color: #667085;
    padding: 22px 0;
    text-align: center;
    font-size: 12px;
}


footer img {
    max-width: 130px;
    filter: none;
    margin-bottom: 12px;
}


footer a {
    color: #b27f4e;
    text-decoration: none;
}


footer a:hover {
    color: #94683f;
    text-decoration: underline;
}

.reset-password-form {
    max-width: 450px;
}


.reset-subtitle {
    margin: -10px 0 26px;
    text-align: center;
    color: #667085;
    font-size: 13px;
    line-height: 1.6;
}

.account-email {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 62px;
    margin-bottom: 25px;
    padding: 11px 14px;
    background: #faf9f7;
    border: 1px solid #e8e1d8;
    border-radius: 11px;
    box-sizing: border-box;
}


.account-email-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #f3e9dd;

    color: #b88955;

    font-size: 15px;
}


.account-email-label {
    display: block;

    margin-bottom: 2px;

    color: #98a2b3;

    font-size: 10px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: .4px;
}


.account-email strong {
    display: block;

    color: #344054;

    font-size: 13px;

    font-weight: 600;

    word-break: break-word;
}


/* =========================================================
   RESET ERROR
========================================================= */

.reset-error {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 22px;

    padding: 11px 13px;

    border: 1px solid #f1caca;

    border-radius: 10px;

    background: #fff7f7;

    color: #b42318;

    font-size: 12px;

    line-height: 1.5;
}


.reset-error i {
    flex-shrink: 0;

    font-size: 14px;
}


/* =========================================================
   RESET DIVIDER
========================================================= */

.reset-divider {
    width: 100%;

    height: 1px;

    margin: 25px 0 20px;

    background: #e5e7eb;
}


/* =========================================================
   BACK LINK
========================================================= */

.reset-back {
    text-align: center;
}


.reset-back a {
    display: inline-flex;

    align-items: center;

    color: #a87546;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    transition:
        color .2s ease,
        transform .2s ease;
}


.reset-back a:hover {
    color: #8e613b;

    transform: translateX(-2px);

    text-decoration: none;
}


/* =========================================================
   PASSWORD INPUT
========================================================= */

.reset-password-form .form-control {
    background: #ffffff;
}


.reset-password-form .password-toggle {
    color: #98a2b3;
}


.reset-password-form .password-toggle:hover {
    color: #b88955;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {

    body > .container {
        padding: 30px 15px;
    }

    .auth-form {
        max-width: 100%;
        padding: 34px 25px 30px;
        border-radius: 17px;
    }

    .form-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .auth-form .form-control {
        height: 49px;
    }

    .auth-form .btn-primary {
        height: 50px;
    }

    .auth-footer {
        font-size: 13px;
    }
}