/* ===== ACCOUNT SETTINGS STYLES ===== */
.account-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
}

.account-form h1 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.account-form .bg-white {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.account-form .border-b {
    border-bottom: 1px solid #e2e8f0;
}

.account-form .p-6 {
    padding: 1.5rem;
}

.account-form h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
}

.account-form .mb-6 {
    margin-bottom: 1.5rem;
}

.account-form .mb-4 {
    margin-bottom: 1rem;
}

.account-form label {
    display: block;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.account-form input[type="text"],
.account-form input[type="password"],
.account-form input[type="date"],
.account-form input[type="time"],
.account-form input[type="number"],
.account-form select,
.account-form textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: border-color 0.2s;
}

.account-form input:focus,
.account-form select:focus,
.account-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.account-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23a0aec0'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1.5em;
}

.account-form button[type="submit"] {
    color: white;
    background: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: background-color 0.2s;
    cursor: pointer;
    border: none;
}

.account-form button[type="submit"]:hover {
    background: var(--secondary-color);
}

/* Message styles */
.account-form .text-sm {
    font-size: 0.875rem;
}

.account-form .rounded-lg {
    border-radius: 0.5rem;
}

.account-form .bg-red-100 {
    background-color: #fff5f5;
}

.account-form .text-red-700 {
    color: #e53e3e;
}

.account-form .bg-green-100 {
    background-color: #f0fff4;
}

.account-form .text-green-700 {
    color: #38a169;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .account-form {
        padding: 1rem;
    }
    
    .account-form .p-6 {
        padding: 1rem;
    }
}