/*Theme Name: Tema base
Theme URI: somosjam.cl
Description: Template hecho para tomarlo como base inicial de cualquier proyecto wordpress
Version: 1.0
Author: SOMOS JAM
Author URI: https://somosjam.cl/
*/
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
body{
    margin: 0;
    padding: 0;
}

:root{
    --rojo: #eb0e00;
    --amarillo: #FFC400;
    --celeste: #0391ce;
    --plomo: #717175;
    --plomotext: #3E3E3E;
}

*{
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
}

h1,h2,h3,h4,h5,h6,p{
    margin: 0;
}

.contenedor_principal{
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
	gap: 60px;
    justify-content: center;
}

.barraColor {
    display: flex;
    align-items: center;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.barraColor_content{
    width: 25%;
    height: 5px;
}

.barraColor_content.yellow{
    background-color: var(--amarillo);
}
.barraColor_content.blue{
    background-color:var(--celeste);
}
.barraColor_content.gray{
    background-color:var(--plomo);
}
.barraColor_content.red{
    background-color:var(--rojo);
}

.contentform {
    background: white;
    box-shadow: 3px 3px 6px #0000006f;
    border-radius: 15px;
    padding: 25px;
    min-height: 50%;
    min-width: 50%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.contentform__bienvenida h4 {
    text-align: center;
    font-size: 25px;
    margin-top: 20px;
    color: var(--celeste);
    font-weight: 400;
}

.contentform__bienvenida h3 {
    text-align: center;
    color: var(--plomotext);
    font-weight: 400;
    font-size: 35px;
}

.contentform__bienvenida h2 {
    text-align: center;
    color: var(--plomotext);
    font-weight: bold;
    font-size: 40px;
}

.contentform__bienvenida button {
    max-width: 299px;
    margin: 20px auto 0;
    display: block;
    background: var(--amarillo);
    border: none;
    padding: 10px 35px;
    font-weight: bold;
    font-size: 15px;
    color: white;
    border-radius: 6px;
    outline: none;
    cursor: pointer;
}

#formularioInit{
    display: none;
}


div#formularioInit h2 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--plomotext);
    font-size: 25px;
}
div#formularioInit form {
    max-width: 370px;
    margin: 0 auto;
	overflow:hidden;
}
div#formularioInit form input {
    width: 100%;
    margin-bottom: 12px;
    padding: 10px 10px;
    background: #f8f8f8;
    outline: none;
    border-radius: 6px;
    box-shadow: 2px 3px 4px #00000029;
    border: 1px solid #CBCBCB;
}
#formularioInit form button{
    max-width: 299px;
    margin: 20px auto 0;
    display: block;
    background: var(--amarillo);
    border: none;
    padding: 10px 35px;
    font-weight: bold;
    font-size: 15px;
    color: white;
    border-radius: 6px;
    outline: none;
    cursor: pointer;
}

div#formularioInit {
    position: relative;
}

div#errorIcon {
    position: absolute;
    top: -25%;
    left: 50%;
    max-width: 140px;
    transform: translateX(-50%);
}

div#errorIcon img {
    width: 100%;
    object-fit: contain;
    height: 100%;
}

.card_error {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}
.card_error img {
    height: 24px;
}
div#erroresInd {
    margin-top: 9px;
}

.card_error span {
    font-size: 11px;
    color: var(--plomotext);
}

#errorIcon{
    display: none;
}

div#formularioInit form input {
    width: 100%;
    margin-bottom: 12px;
    padding: 10px 10px;
    background: #f8f8f8;
    outline: none;
    border-radius: 6px;
    box-shadow: 2px 3px 4px #00000029;
    border: 1px solid #CBCBCB;
}
.caja_password input {
    margin: 0!important;
    padding-right: 15%!important;
}

.caja_password span {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 10px;
}

.caja_password input {
    margin: 0!important;
    padding-right: 15%!important;
}

.caja_password{
    position: relative
}



div#checkIcon {
    position: absolute;
    top: -67%;
    left: 50%;
    max-width: 140px;
    transform: translateX(-50%);
}

div#checkIcon img {
    width: 100%;
    object-fit: contain;
    height: 100%;
}

div#regexito {
    position: relative;
    height: 100%;
    display: none;
    text-align: center;
}

div#regexito h2 {
    font-size: 25px;
    text-align: center;
    color: var(--plomotext);
    margin-bottom: 20px;
    margin-top: 15px;
}

div#regexito h3 {
    font-size: 20px;
    text-align: center;
    font-weight: 400;
    margin-bottom: 18px;
}

.contentresultado {
    max-width: 300px;
    margin: 0 auto;
    margin-bottom: 30px;
    opacity: .5;
}

.card_resultado {
    margin-bottom: 10px;
    display: flex;
    gap: 13px;
    justify-content: center;
}

.card_resultado span {
    font-size: 13px;
    color: var(--plomotext);
}

.card_resultado label {
    font-size: 13px;
    color: var(--plomotext);
}

div#regexito button {
    background: var(--amarillo);
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 3px;
    padding: 7px 35px;
    font-size: 16px;
    outline: none;
    cursor: pointer;
}

.barraColorProgreso{
	background-color: #368149;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    height: 10px;
    transition: width .63s,background-color .2s;
    width: 0;
}


.activeForm{
	background: url(http://password.lti.cl/wp-content/uploads/2022/09/Enmascarar-grupo-5.png)!important;
    background-repeat: no-repeat no-repeat!important;
    background-size: 50% 100%!important;
    background-blend-mode: overlay!important;
	background-color: #e9e9e9!important;
}


.contenedorFlotante{
	    width: 32%;
}
.tituloFormR{
    color: #3E3E3E;
    font-size: 27px;
}

.subtittleFormR{
	    color: #3E3E3E;
    font-size: 20px;
}

.cardIcon{
margin: 30px 0;
	    display: flex;
    gap: 20px;
}

.cardIcon p{
    color: #4E4E4E;
    font-size: 17px;
}

.cardIcon > div {
    min-width: 50px;
    height: 50px;
    border-radius: 100%;
    background: #0091CE;
}

.cardIcon img{
	width: 100%;
	height: 100%;
	object-fit:contain;
}

.cardIcon .red{
	background: #EB0F00!important;
}

.contenedorFlotante{
	display:none;
}