.container-login form h2{
    width: 100%;
    margin-bottom: 32px;
    font-size: 28px;
}

.container-login form input{
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.06) inset, 0px 0px 0px 1px rgba(0, 0, 0, 0.16);
    display: flex;
    border:none;
    height: 50px;
    padding: 12px 16px;
    align-items: center;
    gap: 4px;
    align-self: stretch;
    outline: 0
}

.container-login form p.input-form{
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px
}

p.password.input-form input, p.login.input-form input{
    width: 100%;
    padding-left: 54px;
}

p.password.input-form label, p.password.input-form  a {
    width: calc(50% - 4px);
}


.container-login form label {
    color: #000;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: -0.14px;
}

p.password.input-form  a{
    text-align: end;
    color: var(--neutral-500, #888);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: -0.14px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

button[name="custom_login_submit"] {
    border-radius: 12px;
    border: 1px solid var(--green-600, #00B092);
    background: var(--green-600, #00B092);
    display: flex;
    padding: 16px 18px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    width: 100%;
    color: var(--neutral-100, #FFF);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 25.6px */
}

.create-account {
    margin-top: 16px;

}

.create-account p {
    color: var(--neutrals-800, #141414);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: -0.14px;
}

.create-account a {
    display: flex;
    padding: 16px 18px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid var(--green-100, #F4FEFC);
    background: var(--green-200, #E8FCF9);
    color: var(--green-600, #00B092);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 25.6px */
}

.container-login .wrapper {
    margin: 39px 0;
    border-top: 1px solid #E0E0E0;
    position: relative
}

.container-login .wrapper p{
    position: absolute;
    bottom: calc(50% - 21px);
    right: calc(50% - 34px);
    width: 68px;
    height: 21px;
    background-color: #fff;
    text-align: center;
    color: var(--neutral-300, #E0E0E0);
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: -0.28px;
}

.social-login button{
    width: 100%;
    border-radius: 6px;
    border: 1px solid var(--green-300, #BAEEE5);
    display: flex;
    height: 45px;
    padding: 12px 18px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    color: var(--green-600, #00B092);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: -0.14px;
}
.social-login{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

p.password.input-form:before{
    content: url('/wp-content/themes/hello-elementor-child/images/icones/lock.svg');
    left:16px;
    bottom: 15px;
    width: 30px;
    height: 18px;
    position: absolute;
    border-right: 1px solid #888;
    padding-right: 16px;

}
p.password.input-form, p.login.input-form{
    position: relative
}

p.login.input-form:before {
    content: url('/wp-content/themes/hello-elementor-child/images/icones/user.svg');
    left:16px;
    bottom: 15px;
    width: 30px;
    height: 18px;
    position: absolute;
    border-right: 1px solid #888;
    padding-right: 16px;
}

@media screen and (max-width: 768px){
    .container-login form h2{
        width: 100%;
        margin-bottom: 32px!important;
        font-size: 24px;
    }
}