/* Header css */
/* Change Password css */
.change-password-form {
    max-width: 600px;
    margin: auto;
}
.change-password-form .form-label {
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}
.change-password-form .form-control {
    height: 66px;
    border-radius: 10px;
    border: 1px solid #EBEBEB;
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
}
.change-password-form .form-control::placeholder {
    color: #C7CBD4;
    font-weight: 500;
    font-size: 16px;
}
.change-password-form .input-group-append {
    border: 1px solid #EBEBEB;
    height: 66px;
    padding: 20px;
    border-radius: 0 10px 10px 0 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.change-password-form .eye-icon {
    transition: all 0.3s ease;
    width: 20px;
    height: 20px;
}
.change-password-form .input-group-append a:focus {
    outline: none;
}
.change-password-form .input-group-append .eye-icon:focus {
    outline: none;
}
.change-password-form .input-group-append:hover .eye-icon {
    transform: scale(1.1);
}


/* My profile css */
.my-profile-form {
    max-width: 600px;
    margin: auto;
}
.my-profile-form .form-label {
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}
.my-profile-form .form-control {
    height: 66px;
    border-radius: 10px;
    border: 1px solid #EBEBEB;
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
}
.my-profile-form .form-control::placeholder {
    color: #C7CBD4;
    font-weight: 500;
    font-size: 16px;
}
.my-profile-form .input-group-append {
    border: 1px solid #EBEBEB;
    height: 66px;
    padding: 20px;
    border-radius: 0 10px 10px 0 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.my-profile-form .eye-icon {
    transition: all 0.3s ease;
    width: 20px;
    height: 20px;
}
.my-profile-form .input-group-append a:focus {
    outline: none;
}
.my-profile-form .input-group-append .eye-icon:focus {
    outline: none;
}
.my-profile-form .input-group-append:hover .eye-icon {
    transform: scale(1.1);
}
.my-profile-form .user-photo-upload {
    margin-bottom: 30px;
}
.my-profile-form .user-photo-upload .user-img {
    height: 150px;
    border: 4px solid var(--primary-color);
    border-radius: 100px;
}
.my-profile-form .user-photo-upload .input-file {
    position: absolute;
    opacity: 0;
    right: -4px;
    bottom: 21px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.my-profile-form .user-photo-upload .upload-img {
    position: absolute;
    right: -10px;
    bottom: 14px;
    background: var(--primary-color);
    padding: 5px;
    border-radius: 100px;
    border: 4px solid var(--white);
}