/*
Theme Name: TT5 Child Theme
Theme URI: 
Author: GDG
Author URI: 
Description: 
Requires at least: 6.8
Tested up to: 6.8
Requires PHP: 5.7
Version: 
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Template: twentytwentyfive
Text Domain: tt5-child-theme
Tags: 
*/

/* JET ENGINE PROFILE BUILDER */
/* Custom Menu */

.jet-profile-menu__item-link {
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;

}

.jet-profile-menu__item-link:hover {
    border-right: 5px solid #000;

}

/* Button */
.button.jet-form-builder__submit {
    padding: 4px 8px;
    background-color: blue;
}

/* JET ENGINE FORM BUILDER */

/* First Style Gradient Background */
/*
.login-form {

    background-color: #fff;
    border: 10px solid transparent;
    border-radius: 1rem;
    background: radial-gradient(circle at 50% 250%, #f3f3f3, #f3f3f3) padding-box, linear-gradient(red, blue) border-box;
    padding: 1rem;
}
*/

/* First Style Blurry Background */
.login-form {
    position: relative;
    padding: 1rem;
    border-radius: 1rem;
    background: hsl(255, 60%, 7%, 0.5);
    backdrop-filter: blur(12px);
    width: 500px;
}

.login-form::before {

    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    background: linear-gradient(red, blue) border-box;
    mask: linear-gradient(black, black) border-box, linear-gradient(black, black) padding-box;
    mask-composite: subtract;


}


/* Fields */

.layout-column .jet-form-builder__field:not(.checkboxes-field):not(.radio-field):not(.range-field) {
    padding: .25rem .5rem;
    border-radius: .5rem;
}


/* Lables */

.jet-form-builder__label-text {
    font-weight: 700;
    font-size: .8rem;
}

.jet-form-builder__field-wrap.checkradio-wrap span {
    font-size: .8rem;
}

/* Checkbox */

.jet-form-builder__field-label > span::before {
    content: "";
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #adb5bd;
    margin-right: .5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size:50% 50%
}


.jet-form-builder__action-button.btn-submit {
    background-image: linear-gradient(45deg, #FF512F 0%, #F09819  51%, #FF512F  100%);
    color: var(--wp--preset--color--contrast);
    transition: 0.5s;
    background-size: 200% auto;
    border: 0;
    font-weight: 700;
    box-shadow: 0px 0px 14px -7px #f09819;
    background-image: linear-gradient(45deg, #FF512F 0%, #F09819  51%, #FF512F  100%);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    padding: 15px 30px;
    border-radius: 9999px;
}
.jet-form-builder__action-button:hover:not(:disabled) {
    background-position: right center;

}
.jet-form-builder__action-button:active:not(:disabled) {
    transform: scale(0.95);

}
.jet-form-builder__action-button.btn-reset {
    border: none;
    background: transparent;
    color: #f29400;
}

.jet-form-builder__action-button.btn-reset:hover {
    text-decoration: underline;
}

.jet-form-builder__action-button.btn-switch {
    width: 100%;
    padding: 15px 30px;
    border: 1px solid #f29400;
    background-color: transparent;
}

