/* Login Page Styles */
body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #548fa2 0%, #90bbc3 100%);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.container {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
}

.login-form {
    display: flex;
    flex-direction: column;
}

.logo {
    text-align: center;
    margin-bottom: 2rem;
}

.logo img {
    max-width: 200px;
    height: auto;
}

h1 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1e40af;
    font-size: 1.75rem;
    font-weight: 600;
}

input {
    padding: 0.875rem 1rem;
    margin-bottom: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

input:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

input::placeholder {
    color: #9ca3af;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-align: center;
    background-color: #fee2e2;
    padding: 0.75rem;
    border-radius: 0.5rem;
}

button {
    padding: 0.875rem 1rem;
    background: linear-gradient(135deg, #548fa2 0%, #90bbc3 100%);
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(84, 143, 162, 0.4);
}

button:active {
    transform: translateY(0);
}

@media (max-width: 480px) {
    .container {
        margin: 1rem;
        padding: 2rem 1.5rem;
    }
}
