/* === SOFT UI FORM STYLES === */

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
    font-family: 'Inter', sans-serif;
}

.input-soft {
    width: 100%;
    padding: 16px 20px;
    background-color: #F9F7F2; /* Cream/Off-white */
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    color: #1f2937;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.input-soft:focus {
    background-color: white;
    border-color: #EBC06D; /* Gold border focus */
    box-shadow: 0 0 0 4px rgba(235, 192, 109, 0.15);
    outline: none;
}

.btn-auth-gold {
    width: 100%;
    padding: 16px;
    background-color: #1a4d2e; /* Deep Green */
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
    margin-top: 10px;
    font-family: 'Inter', sans-serif;
}

.btn-auth-gold:hover {
    background-color: #143d24; 
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 77, 46, 0.15);
}

.remember-me {
    display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: #6b7280; cursor: pointer;
}