/**
 * TAHN Account Page Styles
 */

.tahn-account-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.tahn-account-page h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #111827;
}

.tahn-account-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tahn-account-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f3f4f6;
    color: #111827;
}

.tahn-account-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #374151;
}

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

.tahn-form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #374151;
    font-size: 0.95rem;
}

.tahn-form-group input[type="text"],
.tahn-form-group input[type="email"],
.tahn-form-group input[type="password"],
.tahn-form-group input[type="tel"],
.tahn-form-group input[type="file"],
.tahn-form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
}

.tahn-form-group input[type="text"]:focus,
.tahn-form-group input[type="email"]:focus,
.tahn-form-group input[type="password"]:focus,
.tahn-form-group input[type="tel"]:focus,
.tahn-form-group select:focus {
    outline: none;
    border-color: #6C3DF4;
    box-shadow: 0 0 0 3px rgba(108, 61, 244, 0.1);
}

.tahn-form-group input[type="text"]:disabled,
.tahn-form-group select:disabled {
    background: #f3f4f6;
    cursor: not-allowed;
    color: #6b7280;
}

.tahn-form-group .description {
    margin-top: 6px;
    font-size: 0.875rem;
    color: #6b7280;
}

.tahn-form-group-header {
    margin-top: 30px;
    margin-bottom: 15px;
}

.tahn-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.tahn-logo-preview {
    margin-bottom: 15px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 8px;
    display: inline-block;
}

.tahn-logo-preview img {
    max-width: 200px;
    max-height: 100px;
    display: block;
}

.tahn-form-actions {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 20px;
}

.tahn-btn-primary {
    background: #6C3DF4;
    color: white;
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.tahn-btn-primary:hover {
    background: #5b32d4;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(108, 61, 244, 0.3);
}

.tahn-btn-primary:active {
    transform: translateY(0);
}

.tahn-btn-primary:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.tahn-form-message {
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    display: none;
}

.tahn-form-message:not(:empty) {
    display: block;
}

.tahn-form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.tahn-form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Responsive */
@media (max-width: 768px) {
    .tahn-account-page {
        padding: 20px 15px;
    }

    .tahn-account-section {
        padding: 20px;
    }

    .tahn-form-row {
        grid-template-columns: 1fr;
    }

    .tahn-form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .tahn-btn-primary {
        width: 100%;
    }
}
