.profile-form .mud-input-label {
    color: #4b5563;
    font-weight: 500;
    font-size: 13px;
}

.profile-form .mud-input-root.mud-input-root-outlined {
    border-radius: 10px;
    background: #ffffff;
}

.profile-form .mud-input-outlined-border {
    border-color: #d1d5db;
    border-radius: 10px;
}

.profile-form .mud-input-root.mud-input-root-outlined .mud-input-slot {
    padding: 10px 12px;
    font-size: 14px;
}

.profile-form .mud-input-root.mud-input-root-outlined.mud-input-focused .mud-input-outlined-border {
    border-color: #00a3ff;
    box-shadow: 0 0 0 1px rgba(0, 163, 255, 0.25);
}

.profile-form .mud-select {
    border-radius: 10px;
}

.profile-form .mud-select .mud-input-slot {
    padding: 10px 12px;
}

.profile-form .mud-select .mud-input-outlined-border {
    border-radius: 10px;
}

.profile-form .mud-input-root textarea {
    font-family: inherit;
}

.profile-form .mud-grid-spacing-xs-3 {
    margin-top: 4px;
}

/* Design-style form layout */
.profile-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 20px;
}

.profile-form .form-grid.single-col {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.profile-form .form-group {
    display: flex;
    flex-direction: column;
}

.profile-form .form-group label {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #4b5563;
}

.profile-form .form-group input,
.profile-form .form-group select,
.profile-form .form-group textarea {
    border-radius: 10px;
    border: 1px solid #d1d5db;
    padding: 10px 12px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    font-family: inherit;
    background: #ffffff;
}

.profile-form .form-group textarea {
    min-height: 80px;
    resize: vertical;
}

.profile-form .form-group input:focus,
.profile-form .form-group select:focus,
.profile-form .form-group textarea:focus {
    border-color: #00a3ff;
    box-shadow: 0 0 0 1px rgba(0, 163, 255, 0.25);
}

.profile-form .btn-row-right {
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
}

.profile-form .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(0, 163, 255, 0.4);
}

@media (max-width: 960px) {
    .profile-form .form-grid {
        grid-template-columns: 1fr;
    }
}

