/* ============================================================
   COGNIVOX EMPLOYEE CALENDAR LOGIN
   ============================================================ */

.employee-calendar-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 20px;
    background:
            radial-gradient(
                    circle at top left,
                    rgba(13, 110, 253, 0.10),
                    transparent 38%
            ),
            #f5f7fb;
}


/* ============================================================
   CONTAINER
   ============================================================ */

.employee-calendar-login-container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}


/* ============================================================
   CARD
   ============================================================ */

.employee-calendar-login-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 42px 40px;
    box-shadow:
            0 18px 45px rgba(0, 0, 0, 0.08);
}


/* ============================================================
   HEADER
   ============================================================ */

.employee-calendar-login-header {
    text-align: center;
    margin-bottom: 32px;
}

.employee-calendar-login-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d6efd;
    color: #ffffff;
    font-size: 30px;
    box-shadow:
            0 10px 25px rgba(13, 110, 253, 0.22);
}

.employee-calendar-login-header h1 {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
}

.employee-calendar-login-header p {
    margin: 0;
    font-size: 15px;
    color: #6b7280;
}


/* ============================================================
   FORM
   ============================================================ */

.employee-calendar-login .form-control {
    display: block;
    width: 100%;
    min-height: 52px;

    border: 1px solid #d8dee8;
    border-radius: 10px;

    padding: 12px 14px;

    font-size: 16px;

    box-sizing: border-box;

    box-shadow: none;

    transition:
            border-color 0.15s ease,
            box-shadow 0.15s ease;
}

.employee-calendar-login .form-control:focus {
    border-color: #0d6efd;

    outline: 0;

    box-shadow:
            0 0 0 4px rgba(13, 110, 253, 0.10);
}
/* ============================================================
   VERIFICATION CODE
   ============================================================ */

.employee-calendar-verification-code {
    text-align: center;
    font-size: 26px !important;
    font-weight: 700;
    letter-spacing: 8px;
}


/* ============================================================
   BUTTON
   ============================================================ */

.employee-calendar-login .btn-calendar-login {
    min-height: 52px;
    width: 100%;
    border: 0;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    background: #0d6efd;
    color: #ffffff;
    transition:
            background-color 0.15s ease,
            transform 0.1s ease,
            box-shadow 0.15s ease;
}

.employee-calendar-login .btn-calendar-login:hover {
    background: #0b5ed7;
    color: #ffffff;
    box-shadow:
            0 8px 20px rgba(13, 110, 253, 0.20);
}

.employee-calendar-login .btn-calendar-login:active {
    transform: translateY(1px);
}


/* ============================================================
   MESSAGE
   ============================================================ */

.employee-calendar-login .calendar-login-message {
    margin-bottom: 24px;
    padding: 12px 14px;
    border: 1px solid #cfe2ff;
    border-radius: 10px;
    background: #e7f1ff;
    color: #084298;
    font-size: 14px;
}


/* ============================================================
   VALIDATION
   ============================================================ */

.employee-calendar-login .field-validation-error,
.employee-calendar-login .validation-summary-errors {
    color: #dc3545;
    font-size: 13px;
}

.employee-calendar-login .field-validation-error {
    display: block;
    margin-top: 6px;
}


/* ============================================================
   SECONDARY LINK
   ============================================================ */

.employee-calendar-login-link {
    margin-top: 22px;
    text-align: center;
}

.employee-calendar-login-link a {
    color: #0d6efd;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.employee-calendar-login-link a:hover {
    text-decoration: underline;
}


/* ============================================================
   SECURITY MESSAGE
   ============================================================ */

.employee-calendar-security-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid #edf0f4;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.5;
}

.employee-calendar-security-note i {
    margin-top: 3px;
    color: #6b7280;
}


/* ============================================================
   FOOTER
   ============================================================ */

.employee-calendar-login-footer {
    margin-top: 24px;
    text-align: center;
    color: #8a94a3;
    font-size: 12px;
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 576px) {

    .employee-calendar-login {
        align-items: flex-start;
        padding: 25px 14px;
    }

    .employee-calendar-login-card {
        padding: 32px 22px;
        border-radius: 14px;
    }

    .employee-calendar-login-icon {
        width: 64px;
        height: 64px;
        font-size: 27px;
    }

    .employee-calendar-login-header h1 {
        font-size: 24px;
    }

    .employee-calendar-verification-code {
        font-size: 23px !important;
        letter-spacing: 6px;
    }
}

/* ============================================================
   CALENDAR ACCOUNT SELECT
   ============================================================ */

.employee-calendar-login .form-select {
    width: 100%;
    min-height: 52px;

    padding: 0.75rem 3rem 0.75rem 1rem;

    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;

    color: #1f2937;
    background-color: #ffffff;

    border: 1px solid #d1d5db;
    border-radius: 10px;

    cursor: pointer;

    transition:
            border-color 0.2s ease,
            box-shadow 0.2s ease,
            background-color 0.2s ease;

    appearance: none;
    -webkit-appearance: none;

    background-image:
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
}


/* ============================================================
   HOVER
   ============================================================ */

.employee-calendar-login .form-select:hover {
    border-color: #9ca3af;
}


/* ============================================================
   FOCUS
   ============================================================ */

.employee-calendar-login .form-select:focus {
    border-color: #2563eb;

    outline: 0;

    box-shadow:
            0 0 0 3px rgba(37, 99, 235, 0.12);
}


/* ============================================================
   OPTIONS
   ============================================================ */

.employee-calendar-login .form-select option {
    color: #1f2937;
    background-color: #ffffff;

    font-size: 1rem;
}


/* ============================================================
   LABEL
   ============================================================ */

.employee-calendar-login .form-label {
    display: block;

    margin-bottom: 0.5rem;

    font-size: 0.9rem;
    font-weight: 600;

    color: #374151;
}