/*FONT IMPORTS*/
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    display: none;
}

body{
    width: 100%;
    height: 100vh;
    background-color: #000000;
    display: grid;
    place-items: center;
    background-image: url(..../ASSETS/BG-SIGN_UP-removebg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

legend{
    font-family: 'Archivo', sans-serif;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 25px;
}

#msgError{
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    color: #FD2E35;
    font-weight: 400;
}

.cButton{
    display: grid;
    place-items: center;
}

.cBotonLogIn{
    font-family: 'Bebas Neue' !important;
    background-color: #FD2E35;
    height: 70px;
    width: 150px;
    color: #ffffff;
    text-decoration: none;
    display: grid;
    place-items: center;
    border: 1px solid #ffffff;
    transition: all 0.3s ease;
    font-size: 22px;
}
.cBotonLogIn:hover{
    font-family: 'Bebas Neue' !important;
    background-color: #ffffff;
    height: 70px;
    width: 150px;
    color: #FD2E35;
    text-decoration: none;
    display: grid;
    place-items: center;
    border: 1px solid #FD2E35;
    transition: all 0.3s ease;
    cursor:pointer;
}


form{
    text-align: center;
    margin-top: 100px;
    width: 50%;
    height: 500px;
    background-color: transparent;
    box-shadow: 0 0 0px #FD2E35;
}

.cForms{
    display: block;
    width: 100%;
    height: 60px;
    background: 0 0;
    border: 1.5px solid #fff;
    border-color: transparent transparent #fff transparent;
    font-family: 'Archivo', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 2;
    letter-spacing: .02em;
    color: #f9f9f9;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 50px;
    transition: all 0.6s ease;
}
.cForms:focus{
    outline: none !important;
    border-color: transparent transparent #FD2E35 transparent;
    transition: all 0.6s ease;
}
