/* Login Modal Styles */
.login-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.login-modal {
    background: white;
    border-radius: 12px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    overflow: hidden;
}

.login-modal-header {
    background: linear-gradient(135deg, #0D6B4A 0%, #145B9D 100%);
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.login-modal-header h3 i {
    margin-right: 10px;
}

.login-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.login-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.login-modal-body {
    padding: 30px 25px;
    text-align: center;
}

.login-modal-body p {
    margin: 0 0 25px 0;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.6;
}

.login-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.login-modal-buttons .btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
}

.login-modal-buttons .btn-primary {
    background: linear-gradient(135deg, #0D6B4A 0%, #145B9D 100%);
    color: white;
    border: none;
}

.login-modal-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 107, 74, 0.3);
}

.login-modal-buttons .btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #e5e7eb;
}

.login-modal-buttons .btn-secondary:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

/* Modal Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .login-modal {
        width: 95%;
        margin: 20px;
    }
    
    .login-modal-header {
        padding: 15px 20px;
    }
    
    .login-modal-body {
        padding: 20px;
    }
    
    .login-modal-buttons {
        flex-direction: column;
    }
    
    .login-modal-buttons .btn {
        width: 100%;
    }
}
