/* Override main layout for form pages */
main {
    display: block;
}

/* Common form container styles */
.form-container {
    max-width: 400px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: fit-content;
}

/* Form titles */
.form-container h1 {
    text-align: center;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Common form styles */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Form labels */
.form-group label {
    font-size: 0.9rem;
    color: #555;
}

/* Form inputs */
.form-group input {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

/* Submit button */
.submit-btn {
    margin-top: 1rem;
    padding: 0.8rem;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #3a7bc8;
}

/* Navigation links between forms */
.form-nav-link {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

.form-nav-link a {
    color: #4a90e2;
    text-decoration: none;
}

.form-nav-link a:hover {
    text-decoration: underline;
}

/* Error message styling */
.error-message {
    background-color: #ffecec;
    color: #d63031;
    padding: 0.8rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Django form help text */
.helptext {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.1rem;
    margin-bottom: 0.5rem;
}

.helptext ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

/* Django form error lists */
.errorlist {
    color: #d63031;
    font-size: 0.8rem;
    margin-top: 0.1rem;
    margin-bottom: 0.5rem;
    list-style-type: none;
    font-weight: bold;
}