@charset "utf-8";

@font-face {
    font-family: "Quicksand";
    src: url("../FONTS/quicksand/Quicksand-VariableFont_wght.ttf");
}

@font-face {
    font-family: "Nunito-regular";
    src: url("../FONTS/Nunito/Nunito-Regular.ttf");
}

@font-face {
    font-family: "Nunito-bold";
    src: url("../FONTS/Nunito/Nunito-Bold.ttf");
}

:root {
    --gray1: #707070;
    --blue1: #005fae;
    --placeholder: #3194D2;
    --orange: #fbb040;
    /*color: var(--gray1);*/
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
    text-decoration: none;
    color: var(--gray1);
}

.borderRadius {
    border-radius: 2.8vw;
    -moz-border-radius: 2.8vw;
    -webkit-border-radius: 2.8vw;
}

.borderRadiusInput {
    border-radius: 21px;
    -moz-border-radius: 21px;
    -webkit-border-radius: 21px;
}

.generalShadow {
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.37);
    -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.37);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.37);
}

.bg{
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../IMAGES/bg1.svg) top right no-repeat,
    url(../IMAGES/bg2.svg) bottom left no-repeat;
}

#content{
    width: 92vw;
    max-width: 488px;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.37);
    -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.37);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.37);
}

.registerLogo{
    display: none;
}
h1{
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
    font-size: 70px;
    font-weight: bold;
}

p{
    width: 100%;
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
}

form{
    width: 100%;
    max-width: 420px;
}

.formSection{
    width: 100%;
    margin-bottom: 22px;
}

.formInput{
    width: 100%;
    height: 42px;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFF;
}

.formInput img{
    width: 24px;
    width: auto;
}

.formInput input{
    width: calc(100% - 48px);
    width: -webkit-calc(100% - 48px);
    width: -moz-calc(100% - 48px);
    border: 0;
    text-align: center;
    font-size: 18px;
    caret-color: #fbb040;
    color: #005fae;
    outline: none;
}

::placeholder {
    color: #3194D2;
    font-size: 17px;
}

.formInputNoVisble{
    width: 24px;
}

.visibility{
    cursor: pointer;
}

.errorAlert{
    display: none;
    text-align: center;
    font-size: 16px;
    margin-top: 5px;
}

#recoverPassword{
    color: #A2A2A2;
    font-family: 'Nunito-regular', sans-serif;
    font-size: 18px;
    margin-bottom: 40px;
    text-decoration: underline;
}

#send{
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 41px;
    border: none;
    background-color: transparent;
}

#send img{
    width: 50px;
    height: auto;
    margin-left: 5px;
}

.linkRegistro{
    font-family: "Nunito-regular", sans-serif;
    font-size: 18px;
    margin-bottom: 30px;
}

.linkRegistro a{
    font-family: "Nunito-regular", sans-serif;
    font-weight: bold;
    text-decoration: underline;
    color: #707070;
}

@media (min-width: 665px){
    #content{
        margin: 10px 0;
        border-width: 1px;
        border-color: #707070;
        border-radius: 10px;
    }

    .registerLogo{
        display: block;
        height: 30px;
        margin-top: 10px;
    }

    .registerLogo img{
        height: 100%;
        width: auto;
    }

    h1 {
        margin-top: 40px;
        text-align: center;
    }
}