.dash-edit-profile-form-container
{
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 12px 12px 36px 6px rgba(2, 2, 70, 12%);
    padding: 20px;
}

.dash-edit-profile-label{
    display: flex;
    gap: 10px;
    align-items: center;
}

.user-edit-profile-input{
    display: block;
    width: 100%;
    padding: 7px;
    border: 1px solid #c9c7c7;
    border-radius: 5px;
    background-color: #EDEDED;
    outline: none;
    transition: border 0.5s ease-in-out;
}

.user-edit-profile-input:focus, .user-edit-profile-input:hover{
    border: 1px solid #E50065;
}

.field-required{
    color: #E50065;
}

.user-edit-profile-submit-btn{
    display: block;
    padding: 7px;
    width: 100%;
    border: none;
    background-color: #E50065;
    border-radius: 5px;
    color: #fff;
    transition: background-color 0.5s ease;
}
