body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    background-color: #ffffff; 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.section-container {
    max-width: 1200px;
    margin: auto;
    padding: 2rem 1rem;
}

.login-container {
    background: #ffffff; /* White container */
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    text-align: center;
    transition: transform 0.3s ease;
}

.login-container:hover {
    transform: translateY(-5px);
}

h2 {
    font-size: 2rem;
    color: #000000; /* Black for heading */
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif; /* Match nav header font */
}

.error {
    color: #a60b00;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    background: #ffffff; /* White background */
    padding: 0.5rem;
}

.success {
    color: #a60b00; /* Black for success text */
    font-size: 0.9rem;
    margin-bottom: 1rem;
    background: #ffffff; /* White background */
    padding: 0.5rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    text-align: left;
}

label {
    font-size: 1rem;
    color: #000000; /* Black for labels */
    margin-bottom: 0.25rem;
    display: block;
}

input {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #000000;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

input:focus {
    border-color: #a60b00; /* Red on focus */
    outline: none;
}

.btn {
    padding: 0.75rem 1.5rem;
    outline: none;
    border: none;
    font-size: 1rem;
    color: #ffffff; /* White text for button */
    white-space: nowrap;
    background-color: #000000;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: #a60b00; /* Red for hover */
}

.links {
    font-size: 0.9rem;
    color: #000000; /* Black for links text */
    margin-top: 1rem;
}

.links a {
    color: #a60b00; /* Red for links */
    text-decoration: none;
}

.links a:hover {
    text-decoration: underline;
}