@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    font-family: "Roboto", sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #f2f3f5;
}

.main-container {
    min-height: 100vh;
}

.login-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    width: 371px;
    border: 1px solid #dce0e5;
    border-radius: 8px;
    box-shadow: 0px 1px 2px rgba(128, 128, 128, 0.12);
    background-color: #fff;
}

.login-header {
    padding: 20px 24px 0;
}

.login-header h1 {
    font-weight: 700;
    font-size: 24px;
    color: #14181f;
    margin: 0;
}

.login-form {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 0;
}

.form-label {
    font-weight: 700;
    font-size: 15px;
    color: #14181f;
}

.email,
.password {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.email:focus,
.password:focus {
    border-color: #3366ff;
    box-shadow: 0 0 0 2px rgba(51, 102, 255, 0.2);
}

.password-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forgot-link {
    font-weight: 500;
    font-size: 14px;
    color: #3348ff;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.sign-in-button {
    font-weight: 700;
    font-size: 14px;
    color: #14181f;
    height: 40px;
    padding: 8px 16px;
    border: 1px solid #e9ab0d;
    border-radius: 8px;
    box-shadow: 0px 0px 0px 2px #ffd66f inset;
    background-color: #fcbf25;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.sign-in-button:hover {
    background-color: #e9ab0d;
    /* Darker shade on hover */
    transform: translateY(-2px);
    /* Slight lift effect */
    box-shadow: 0px 0px 0px 2px #ffae00 inset, 0px 4px 8px rgba(252, 191, 37, 0.3);
    /* Enhanced glow effect */
}

.sign-in-button:active {
    transform: translateY(0);
    /* Press effect */
    background-color: #d99b00;
    /* Even darker when clicked */
}

.login-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 24px;
    background-color: #f6f6f6;
    gap: 4px;
    border-radius: 0 0 8px 8px;
}

.footer-text {

    font-weight: 400;
    font-size: 12px;
    color: rgba(20, 24, 31, 0.4);
}

.admin-link {

    font-weight: 700;
    font-size: 12px;
    color: #3348ff;
    text-decoration: none;
}

.divider-section {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
}

.divider {
    height: 100vh;
}

.wonderla-logo {
    display: flex;
    align-items: center;
    justify-content: start;
}

.mobile-logo {
    display: none;
    text-align: center;
    margin-bottom: 20px;
}

/* @media (max-width: 991px) {
    .login-card {
        width: 100%;
        max-width: 371px;
    }
} */

@media (max-width: 900px) {
    .divider-section {
        display: none;
    }

    .mobile-logo {
        display: block;
    }

    .desktop-logo {
        display: none;
    }

    .login-card {
        margin-top: 20px;
    }
}

/* forgot pwd */
.back-button {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #333;
    background-color: #fff;
    border: 2px solid #d0cfcf;
    border-radius: 8px;
    padding: 3px;
    margin-bottom: 16px;
    cursor: pointer;
}

.resend-link-button {
    width: 100%;
    height: 40px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    margin-top: 10px;
    cursor: not-allowed;
}

/* Reset password */

.password-input-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
}

.password-requirements {
    margin-top: 10px;
}

.requirement {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 5px;
}

.requirement i {
    margin-right: 8px;
}

.bi-check-circle {
    color: #28a745;
}

.valid {
    color: #28a745;
}

.valid i.bi-circle {
    display: none;
}

.valid i.bi-circle::before {
    content: "\f287";
    /* Bootstrap icon code for check-circle */
    color: #28a745;
}