
@font-face {
    font-family: 'CaviarDreams';
    src: url(/Fuentes/caviar_dreams/CaviarDreams.ttf);
}
*{
    margin: 0;
    padding: 0;
    font-family: CaviarDreams;
}
HTML, body{
    height: 100%;
}
body{
    background-image: linear-gradient(180deg, #e4f4fd, #95d3f7);
    display: flex;
    align-items: center;
    justify-content: center;
}
#Inicio{
    position: relative;
    top: 220px;
    left: 150px;
    background-color: #686868;
    color: white;
    font-size: 20px;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}
#Inicio:hover{
    background-color: #4d4d4d;
}
section{
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "Info Form";
    height: 60%;
    background-color: white;
    border-radius: 20px;
    box-shadow: rgb(143, 143, 143) 0px 0px 10px;
}
#Informacion{
    grid-area: Info;
    margin-right: 150px;
}
#Logo{
    height: 30%;
    position: relative;
    top: 60px;
    left: 30px;
}
#Titulo2{
    font-size: 40px;
    position: relative;
    left: 210px;
    top: -70px;
    font-weight: bold;
}
#Titulo2-2{
    font-size: 40px;
    position: relative;
    left: 210px;
    top: -70px;
    font-weight: bold;
}
h3{
    font-size: 20px;
    position: relative;
    left: 30px;
    top: px;
}
ul{
    list-style-type: circle;
    position: relative;
    left: 60px;
    top: 20px;
}
li{
    font-size: 20px;
}
#Formulario{
    grid-area: Form;
    margin-left: 150px;
}
h1{
    font-size: 40px;
    position: relative;
    top: 30px;
    font-weight: bold;
}
#Texto{
    font-size: 20px;
    position: relative;
    top: 40px;
    padding-right: 30px;
}
form{
    position: relative;
    top: 50px;
}
form label, form input{
    font-size: 20px;
}
input{
    margin-top: 10px;
    margin-bottom: 10px;
    width: 420px;
    padding-top: 5px;
    padding-bottom: 5px;
}
#BotonIniciar{
    position: relative;
    top: 20px;
    background-color: #00a8ff;
    color: white;
    font-size: 20px;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}
#BotonIniciar:hover{
    background-color: #0077cc;
}
h2{
    font-size: 30px;
    position: relative;
    top: 90px;
}
#BotonRegistrar{
    position: relative;
    top: 120px;
    background-color: #00a8ff;
    color: white;
    font-size: 20px;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}
#BotonRegistrar:hover{
    background-color: #0077cc;
}