

.profile-panel-main-content .profile-sidebar .profile-picture-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #efefef;
}

.profile-panel-main-content .profile-sidebar .profile-picture-wrapper img {
    width: 110px;
    border-radius: 50%;
}

.profile-panel-main-content .profile-picture-wrapper .username {
    font-size: 19px;
    font-weight: 700;
}

/*BANNER END*/


/*PROFILE INFO START*/

.profile-panel-main-content .profile-info-wrapper {
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: rgba(33, 102, 95, 0.06);
}

.profile-panel-main-content .profile-info-form .form-head {
    display: flex;
    align-items: center;
    gap: 24px;
}

.profile-panel-main-content .profile-info-form .form-head svg {
    width: 60px;
}

.profile-panel-main-content .profile-info-form .form-head span {
    font-size: 21px;
    font-weight: 600;
}

.profile-panel-main-content .profile-info-form .form-control {
    border: none;
    width: 100%;
    padding: 10px;
    border-radius: 0;
    font-size: 16px;
    background-color: #FFFFFF;
    transition: all 0.3s ease-out;
}

.profile-panel-main-content .profile-info-form .form-control:focus {
    outline: none;
    box-shadow: none;
    border: none;
    background-color: rgb(241, 241, 241);
}

.profile-panel-main-content .profile-info-form .info-submit-btn {
    border-radius: 0;
    background-color: #21665F;
    color: #fff;
    width: 100%;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.password-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrap input {
    width: 100%;
    padding-right: 40px;
}

.password-input-wrap .toggle-password {
    position: absolute;
    left: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.change-pass-text {
    margin-bottom: 0;
    color: #48464d;
    font-size: 15px;
}

.required {
    color: #a00;
}
