/*
/* Contact Information
*/
.client-id-container {
    margin-bottom: 40px;
}

#client-contacts-form .actions-container {
    display: flex;
    justify-content: space-between;
    max-width: 495px;
    align-items: center;
}

#client-contacts-form .actions-container .delete-account {
    cursor: pointer;
    color: #8eabc0;
    font-size: 14px;
    user-select: none;
    -webkit-user-select: none;
    transition: .3s;
}

#client-contacts-form .actions-container .delete-account:hover {
    color: #ff5e5e;
}

#client-contacts-form .field-group {
    max-width: 500px;
}

#client-contacts-form .actions-container {
    margin-top: 30px;
}

@media only screen and (max-width: 450px) {
    #client-contacts-form .actions-container {
        flex-direction: column;
    }

    #client-contacts-form .delete-account {
        margin-top: 30px;
    }
}



/*
/* Password Change
*/
#client-password-change-form {
    margin-top: 30px;
}

#client-password-change-form .field-group {
    max-width: 500px;
    overflow: hidden;
}

#client-password-change-form .password-input-wrapper {
    position: relative;
}

#client-password-change-form #generate-password-icon {
    width: 40px;
    height: 45px;
    position: absolute;
    top: -48px;
    right: 13px;
    cursor: pointer;
    background-image: url(/wp-content/themes/portal/assets/images/icon-gen-pass-yellow.svg);
    background-repeat: no-repeat;
    background-position: 50% 39%;
}

#client-password-change-form .password-toggle-icon {
    top: 36px;
    z-index: 100;
}

#client-password-change-form .submit-button {
    margin-top: 10px;
}