@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap');

/*.login-background {
    height: 100vh;
    background: linear-gradient(135deg, #1a2533 0%, #2c3e50 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.login-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 400px;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.logo {
    max-width: 100px;
    margin: 0 auto 1rem;
}

.input {
    height: 45px;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.login-btn {
    background: #3498db;
    color: white;
    font-size: 1rem;
    padding: 0.75rem;
    border-radius: 10px;
    border: none;
    transition: background 0.3s ease;
}

    .login-btn:hover {
        background: #2980b9;
    }

.error {
    color: #e74c3c;
    font-size: 0.9rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
*/