body {
    font-family: 'Inter', sans-serif; /* Using Inter font as per instructions */
    background-color: beige; /* Consistent with your existing theme */
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Full viewport height */
    margin: 0;
}

.auth-container {
    max-width: 450px; /* Adjust width as needed */
    padding: 30px;
    background-color: #fff;
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #6f4e37; /* Primary color from your buttons */
    font-weight: bold;
}

.form-label {
    font-weight: 500;
    color: #333;
}

.form-control {
    border-radius: 8px; /* Rounded corners for inputs */
    border: 1px solid #ced4da;
    padding: 10px 15px;
}

.form-control:focus {
    border-color: #6f4e37;
    box-shadow: 0 0 0 0.25rem rgba(111, 78, 55, 0.25); /* Focus shadow with primary color */
}

.btn-primary {
    background-color: #6f4e37;
    border-color: #6f4e37;
    padding: 10px 20px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px; /* Rounded corners for buttons */
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #5a3c2a;
    border-color: #5a3c2a;
    transform: translateY(-2px); /* Slight lift on hover */
}

.btn-primary:active {
    transform: translateY(0);
}

.error-message {
    font-size: 0.875em;
    margin-top: 5px;
}

.form-text {
    font-size: 0.875em;
    color: #6c757d;
}

a {
    color: #6f4e37;
    text-decoration: none;
}

a:hover {
    color: #5a3c2a;
    text-decoration: underline;
}
