/* Accounts - Register & Login */

.form-container {
    max-width: 480px;
    margin: 80px auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 2rem;
}

.form-header p {
    color: #7f8c8d;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #34495e;
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 6px;
    font-size: 1rem;
    color: #2c3e50;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.help-text {
    display: block;
    margin-top: 5px;
    color: #95a5a6;
    font-size: 0.85rem;
}

.field-errors {
    margin-top: 5px;
}

.error {
    color: #e74c3c;
    font-size: 0.85rem;
    display: block;
}

.form-actions {
    margin-top: 30px;
}

.btn-submit {
    width: 100%;
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 13px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-footer {
    text-align: center;
    margin-top: 20px;
    color: #7f8c8d;
    font-size: 0.95rem;
}

.form-footer a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
}

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