/* Account Page Specific Styles */
.account-page {
    min-height: 100vh;
}

/* Account Card */
.account-page .account-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.account-page .account-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0066cc, #00a3ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.account-page .account-card:hover::before {
    transform: scaleX(1);
}

/* Card Header */
.account-page .card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.account-page .card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.account-page .card-icon.bg-primary {
    background: linear-gradient(135deg, #0066cc 0%, #00a3ff 100%);
}

.account-page .card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
    user-select: none;
}

/* Form Elements */
.account-page .form-group {
    margin-bottom: 0.875rem;
}

.account-page .form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.375rem;
    user-select: none;
}

.account-page .form-input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    font-size: 0.95rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background-color: #f7fafc;
    color: #4a5568;
    transition: all 0.2s ease;
}

.account-page .form-input:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.account-page .form-input:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

/* Action Buttons */
.account-page .action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.account-page .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    user-select: none;
}

.account-page .btn-action.btn-primary {
    background: linear-gradient(135deg, #0066cc 0%, #00a3ff 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.account-page .btn-action.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.4);
}

.account-page .btn-action.btn-secondary {
    background: white;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.account-page .btn-action.btn-secondary:hover {
    background: #0066cc;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

/* Alert */
.account-page .alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.account-page .alert-warning p {
    color: #d97706;
    font-weight: 600;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .account-page .account-card {
        padding: 1.25rem;
    }

    .account-page .action-buttons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .account-page .card-header {
        gap: 0.5rem;
    }

    .account-page .card-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .account-page .form-input {
        font-size: 0.875rem;
        padding: 0.625rem 0.875rem;
    }
}
