/* Account Page Styles */

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.account-header {
    margin-bottom: 30px;
}

.back-link {
    color: #00d9ff;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.back-link:hover {
    color: #fff;
}

.account-header h2 {
    font-size: 2rem;
    background: linear-gradient(90deg, #00d9ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.account-card {
    background: rgba(37, 37, 66, 0.8);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #3a3a5c;
    backdrop-filter: blur(10px);
    max-width: 600px;
}

.account-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.account-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.account-form label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #00d9ff;
}

.account-form input,
.account-form select {
    padding: 14px 16px;
    border: 2px solid #3a3a5c;
    border-radius: 10px;
    background: #252542;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.account-form input:focus,
.account-form select:focus {
    outline: none;
    border-color: #00d9ff;
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.15);
}

.account-form input:disabled {
    background: #1a1a2e;
    color: #888;
    cursor: not-allowed;
}

.account-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300d9ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-hint {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.form-actions .btn {
    padding: 14px 30px;
    font-size: 1rem;
}

.save-status {
    font-size: 0.9rem;
    color: #00ff88;
}

.save-status.error {
    color: #ff4757;
}

@media (max-width: 768px) {
    .account-card {
        padding: 25px;
    }

    .account-header h2 {
        font-size: 1.5rem;
    }
}
