:root {
    /* ===== Colors ===== */
    --body-color: #f9fafc;
    --white: #fff;
    --silver: #c0c0c0;
    --primary-color: #a6a6a6;
    --white-grey: #e9f4fb;
    --black-grey-color: #666;
    --secundary-color: #008edc;
    --invalid-color: #ff0000;
    --toggle-color: #DDD;
    --text-color: #000000;
    --negro: #1D1D1B;
    --azul: #009FE3;
    --naranja: #F39200;
    --verde: #009640;

    /* ====== Transition ====== */
    --tran-02: all 0.2s ease;
    --tran-03: all 0.3s ease;
    --tran-04: all 0.4s ease;
    --tran-05: all 0.5s ease;
}

/* BASIC */
body {
    font-family: "Poppins", sans-serif;
    height: 100vh;
}

a {
    color: #92badd;
    display: inline-block;
    text-decoration: none;
    font-weight: 400;
}

h2 {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin: 40px 8px 10px 8px;
    color: #cccccc;
}

h3 {
    font-weight: bold;
    text-align: center;
    display: inline-block;
    margin: 40px 8px 10px 8px;
}

/* STRUCTURE */

.wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 20px;
}

#formContent {
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 450px;
    position: relative;
    padding: 0px;
    -webkit-box-shadow: 3px 12px 15px rgb(0 0 0 / 15%);
    box-shadow: 3px 12px 15px rgb(0 0 0 / 15%);
    text-align: center;
}

#formFooter {
    background-color: #f6f6f6;
    border-top: 1px solid #dce8f1;
    padding: 25px;
    text-align: center;
    -webkit-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
}

/* TABS */
h2.inactive {
    color: #cccccc;
}

h2.active {
    color: #0d0d0d;
    border-bottom: 2px solid var(--azul);
}

/* FORM TYPOGRAPHY*/

div.loginButton {
    width: 100%;
    padding: 5px 20px 40px 20px;
    text-align: center;
}

input[type=button],
input[type=submit],
input[type=reset] {
    width: 100%;
    height: 50px;
    border: 1px solid;
    background: var(--secundary-color);
    border-radius: 25px;
    font-size: 18px;
    color: var(--white-grey);
    font-weight: 700;
    cursor: pointer;
    outline: none;
    /* margin: 5px 20px 40px 20px; */
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 100%;
}

input[type=button]:hover,
input[type=submit]:hover,
input[type=reset]:hover {
    background-color: var(--azul);
}

input[type=text],
input[type=password],
input[type=email] {
    background-color: #f6f6f6;
    border: none;
    color: #0d0d0d;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 0 30px 0px;
    width: 90%;
    border: 2px solid #f6f6f6;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
}

*:focus {
    outline: none;
}

input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus {
    background-color: #fff;
    border-bottom: 2px solid var(--azul);
}

input[type=text]:placeholder,
input[type=password]:placeholder,
input[type=email]:placeholder {
    color: #cccccc;
}


/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */


/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
    display: block;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background-color: var(--azul);
    content: "";
    transition: width 0.2s;
}

.underlineHover:hover {
    color: #0d0d0d;
}

.underlineHover:hover:after {
    width: 100%;
}