/* ==========================================================================
   Forms
   ========================================================================== */

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
    color: #555;
    margin-bottom: 5px;
    font-size: 0.9em;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

.auth-container {
    max-width: 400px;
    margin: 40px auto;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.auth-container h1 {
    text-align: center;
    color: #333;
    margin-bottom: 25px;
    font-size: 1.8em;
}

.auth-container h2 {
    font-size: 1.3em;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auth-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 12px;
    border-radius: var(--border-radius);
    border: 1px solid #f5c6cb;
    margin-bottom: 15px;
    white-space: pre-wrap;
}

.auth-success {
    background-color: #d4edda;
    color: #155724;
    padding: 12px;
    border-radius: var(--border-radius);
    border: 1px solid #c3e6cb;
    margin-bottom: 15px;
}

.account-info {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
}
