.login-title {
    font-size: 30px;;
    font-weight: 700;
    color: #1a1a1a;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    margin-top: 60px;
}

.login-card {
    position: relative;
    background: #ffffffc9;
    backdrop-filter: blur(2px);
    border-radius: 8px;
    padding: 80px 30px 30px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-top: 40px;
    width: 450px;
    z-index: 2;
}

.icon-circle {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #206ba4 0%, #206ba4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
    border: 5px solid #d6d6d6;
}

.icon-circle svg {
    width: 60px;
    height: 60px;
    stroke: white;
}

.login-input-group {
    position: relative;
    margin-bottom: 15px;
}

.login-input-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 10;
}

.login-input-icon svg {
    width: 18px;
    height: 18px;
    stroke: #206ba4;
}

.login-input {
    width: 100%;
    padding: 10px 15px 10px 40px;
    font-size: 14px;
    color: #206ba4;
    background: transparent;
    border: none;
    border-bottom: 1px dotted  #b3b3b3;
    outline: none;
    transition: border-color 0.3s ease;
}

.login-input::placeholder {
    color: #206ba4;
}

.login-input:focus {
    border-bottom-color: #206ba4;
}

.login-input-error {
    border-bottom-color: #f44336;
}

.login-error-text {
    color: #f44336;
    font-size: 12px;
    margin-top: -10px;
    margin-bottom: 10px;
}

.login-btn-wrapper {
    text-align: center;
}

#eye-icon-password,
#eye-off-icon-password {
    margin-top: 0;
    margin-right: 0;
}

.login-btn {
    border: 2px solid #206ba4;
    color: #206ba4;
    font-weight: bold;
    padding: 6px 25px 4px;
    border-radius: 25px;
    margin: 20px auto 0;
}

.login-btn:hover {
    background: #206ba4;
    border-color: #206ba4;
    color: #fff;
    cursor: pointer;
}

.login-footer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ============================================================================
   Force Logout Alert — Security notification for single-session enforcement
   ============================================================================ */

@keyframes forceLogoutSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-12px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes forceLogoutPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.35); }
    50%      { box-shadow: 0 0 0 8px rgba(245, 158, 11, 0); }
}

.force-logout-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 16px;
    padding: 14px 16px;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid #f59e0b;
    border-left: 4px solid #d97706;
    border-radius: 8px;
    animation: forceLogoutSlideIn 0.45s ease-out,
               forceLogoutPulse 2s ease-in-out 0.5s 3;
    position: relative;
}

.force-logout-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: #d97706;
    margin-top: 2px;
}

.force-logout-icon svg {
    width: 100%;
    height: 100%;
}

.force-logout-content {
    flex: 1;
    min-width: 0;
}

.force-logout-title {
    font-size: 14px;
    font-weight: 700;
    color: #92400e;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.force-logout-message {
    font-size: 13px;
    color: #78350f;
    margin: 0 0 6px 0;
    line-height: 1.5;
}

.force-logout-hint {
    font-size: 12px;
    color: #b45309;
    margin: 0;
    font-style: italic;
    line-height: 1.4;
}

.force-logout-close {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    padding: 0;
    border: none;
    background: transparent;
    color: #b45309;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.force-logout-close:hover {
    opacity: 1;
}

.force-logout-close svg {
    width: 100%;
    height: 100%;
}

/* Responsive adjustments */
@media (max-width: 639px) {
    .force-logout-alert {
        padding: 12px 14px;
        gap: 10px;
    }

    .force-logout-icon {
        width: 24px;
        height: 24px;
    }

    .force-logout-title {
        font-size: 13px;
    }

    .force-logout-message {
        font-size: 12px;
    }

    .force-logout-hint {
        font-size: 11px;
    }
}
