
    .input-hidden {
      position: absolute;
      left: -9999px;
    }

    input[type=radio]:checked + label {
      border: 1px solid #fff;
      box-shadow: 0 0 3px 3px #090;
    }

    /* Stuff after this is only to make things more pretty */
    input[type=radio] + label {
      border: 1px dashed #444;
      width: 150px;
      height: 150px;
      transition: 500ms all;
    }

    input[type=radio]:checked + label {

    } 

     
    /*FORMULARIO*/
    .formulario_general h2{
        text-align: center;
        width: 100%;
    }
    form-title {
        color: #00c5b2;
        font-size: 22px;
        font-weight: 500;
        text-transform: uppercase;
        text-align: center;
        margin: 15px 0px 30px 0px;
    }

    .form-title-sc {
        color: #2c3638;
        font-size: 18px;
        font-weight: 500;
        text-transform: uppercase;
        text-align: center;
        margin: 15px 0px 30px 0px;
    }

    .form {
        position: relative;
        width: 100%;
        max-width: 550px;
        padding: 15px 30px;
        background: white;
        box-shadow: 0px 0px 3px rgb(208 208 208 / 30%);
        border-radius: 4px;
    }

    .form-controll {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .form-controll:not(:last-of-type) {
        margin-bottom: 33px;
    }

    .form-input {
        position: relative;
        width:100%;
    }

    .form-input input,
    .form-input textarea {
        position: relative;
        width:100%;
        padding: 8px 0px;
        outline: 1px solid transparent;
        border: 1px solid transparent;
        border-bottom: 1px solid #c2c2c2;
        background: transparent !important;
        z-index: 9;
        color: #2c3638;
    }

    .form-controll label  {
        position: absolute;
        left: 0px;
        bottom: 10px;
        color: #c2c2c2;
        font-size: 14px;
        z-index: 1;
        transition: all 0.1s ease-in;
    }

    input:focus + label,
    input:valid + label,
    textarea:focus + label,
    textarea:valid + label {
        bottom: 100%;
        z-index: 9;
        transition: all 0.1s ease-in-out;
    }

    textarea {
        resize: none;
        min-height: 50px;
    }

    input:focus {
        border-bottom: 1px solid #00c5b2;
    }



    .form-submit {
        position: relative;
        width:100%;
        margin: 14px 0px;
    }

    .form-submit .form-btn {
        width: 49%;
        padding: 8px;
        background: #00c5b191;
        font-weight: 500;
        font-size: 14px;
        border-radius: 4px;
        display: inline-block;
        align-items: center;
        justify-content: center;
        border: 1px solid transparent;
        text-transform: uppercase;
        transition: all 0.2s ease;
        letter-spacing: 0.5px;
        color: #FFF;
        cursor: pointer;
    }

    .form-submit .form-btn:hover {
        background: #00c5b2;
        transition: all 0.2s ease-out;
    }

    .grid-2 {
        position: relative;
        width:100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 30px;
    }

    .password-showHide{
        position: absolute;
        right: 0px;
        top: 50%;
        display: grid;
        transform: translateY(-50%);
        cursor: pointer;
        z-index:99;
    }

    .password-showHide .icon {
        grid-row: 1/2;
        grid-column: 1/2;
    }

    .password-showHide .icon path {
        fill: #c2c2c2;
        transition: all 0.2s ease;
    }

    .password-showHide:hover .icon path {
        fill: #2c3638;
        transition: all 0.2s ease;
    }

    .password-showHide .icon.show-password {
        opacity: 1;
        z-index: 9;
    }
    .password-showHide .icon.hide-password {
        opacity: 0;
        z-index: -1;
    }

    .password-showHide.hide .icon.show-password {
        opacity: 0;
        z-index: -1;
    }

    .password-showHide.hide .icon.hide-password {
        z-index: 9;
        opacity: 1;
    }
    /*Steps*/

    .step-tab-items {
        position: relative;
        display: flex;
        align-items: center;
        margin-bottom: 25px;
        justify-content: center;
    }

    .step-tab-items .step-item {
        position: relative;
        list-style: none;
        width: 25px;
        height: 25px;
        background: #e2e2e2;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFF;
        font-size: 14px;
        cursor: pointer;
    }

    .step-tab-items .step-item.active {
        background: #00c5b2;
    }


    .step-tab-items .step-item:not(:last-child) {
        margin-right: 45px;
    }

    .step-tab-items .step-item:not(:last-of-type)::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        background: rgb(241, 239, 239);
        left: calc(100% + 10px);
    }

    .step-tab-items .step-item.active::before {
        background: #00c5b2;
    }

    .step-tabs .step-tab {
        display: none;
    }

    .step-tabs .step-tab.active {
        display: block;
    }

    #ejecutarFuncion {
        cursor: pointer !important;
    }