/* Estilos iniciales para aviso y términos y condiciones */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
    /*========== Colors ==========*/
    --text-color: hsl(228, 15%, 50%);
    --text-color-white: #ffffff;


    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: 'Poppins', sans-serif;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
    /*========== Opacity background ==========*/
    --opacity--bkg: rgba(255, 255, 255, 0.95);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
input,
textarea {
    font-family: "Poppins", sans-serif;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    /* background: linear-gradient(#008904, #7AD300, #C8F000); */
    background-image: linear-gradient(140deg, #008904 20%, #7AD300 74%, #C8F000);
    /* background-image: url(../Img/inicioBck.webp); */
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}


ul {
    list-style: none;
}

a {
    text-decoration: none;
}

.titleInicio {
    margin-top: 5rem;
    text-align: center;
    color: var(--text-color-white);
    font-weight: 400;
}

/* Pintado de contenedor invalido pata tkn recuperar psw */
.container-tknInfo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    /* display: none; */
}

.container-tknInfo img {
    margin-top: 3rem;
    width: 10%;
}

.tknStatus {
    /* margin-top: 2rem; */
    text-align: center;
}

.tknStatus img {
    width: 20%;
}

/* Pintado de contenedor VALIDO pata tkn recuperar psw */
.container-form {
    /* width: 100%; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 4rem;
    border: 2px solid #ffffff;
    padding: 0.5rem 1rem 3rem 1rem;
    border-radius: 3rem 0rem 3rem 0rem;
    display: none;
}

.login-form {
    position: relative;
    width: 400px;
    /* background-color: rgba(0, 0, 0, 0.75); */
    background-color: transparent;
    border-radius: 50px;
}

@media screen and (max-width: 480px) {
    .login-form { /* RESPONSIVE */
        width: 360px;
    } 
}

form {
    padding: 2.3rem 2.2rem;
    position: relative;
}

.logo {
    position: absolute;
    top: 1%;
    left: 50%;
    transform: translate(-50%, -1%);
    width: 100px;
    display: inline-flex;
}

.title {
    color: var(--text-color-white);
    font-weight: 500;
    /* font-size: 1.5rem; */
    line-height: 1;
    margin-top: 1.8rem;
    margin-bottom: 3rem;
    text-align: center;
}

.input-container {
    position: relative;
    margin: 1.7rem 0;
}

.input {
    width: 100%;
    outline: none;
    border: 2px solid #fafafa;
    background: none;
    padding: 0.6rem 1.2rem;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 25px;
    transition: 0.3s;
}

.input-container label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 0.4rem;
    color: #fafafa;
    font-size: 0.9rem;
    font-weight: 400;
    pointer-events: none;
    z-index: 600;
    transition: 0.5s;
}

.input-container.focus label {
    top: 0;
    transform: translateY(-98%);
    left: -7px;
}

.pInvalid {
    font-size: 0.8rem;
    color: var(--text-color-white);
}

.showPsw {
    color: var(--text-color-white);
}

.btnLogin {
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translate(-50%, -110%);
    font-family: var(--body-font);
    padding: 0.6rem 1.3rem;
    background-color: transparent;
    /* background-image: linear-gradient(147deg, #008904 20%, #7AD300 64%, #C8F000); */
    border: none;
    font-size: 0.9rem;
    color: var(--text-color-white);
    border: 2px solid #ffffff;
    border-radius: 25px;
    outline: none;
    cursor: pointer;
    transition: 0.3;
    /* margin-left: 2.8rem; */
}

.btnLogin:hover {
    background-color: var(--text-color-white);
    color: var(--text-color-dark);
}

/* Responsive */
@media (max-width: 480px) {
    form {
        padding: 1.7rem 1.6rem;
    }

    .input {
        padding: 0.45rem 1.2rem;
    }
}

/* .info {
    text-align: center;
    color: var(--text-color-white);
} */


