*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-image: url("Imgs/bg.jpeg");
    background-size: cover; /* Estira y ajusta sin perder proporciones */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
    height: 100vh; /* Altura total de la pantalla */
}

header{
    height: 80px;
    font-size: 2em;
    border-bottom: 3px solid #000000;
    box-shadow: #ffffff 0px 2px 5px;
    background-color: rgb(0, 0, 0);
    display: flex;

    padding-left: 30px;
    padding-right: 30px;
}

header img{
    bottom: 20px;
}

.main{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
}

.container{
    
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    

    width: 100%;
    padding: 20px;
    height: 700px;
    
}

.container h2{
    font-size: 3.2em;

    
}

.container p{
    font-size: 1.5em;

    
}

.box{
    color: #FFFFFF;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 30px;
    width: 95%;

    border: 5px solid #000000;
   
}
    
.box-left{
    color:  #ffffff;
    width: 60%;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
}

.box-right{
    color: #FFFFFF;
    background-color: rgba(0, 0, 0, 0.8);
    border: 5px solid #000000;

    padding: 20px;
    width: 40%;
    height: 100%;
    border-radius: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}


.form-container{
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin-top: 20px;
}

form label{
    
    margin-bottom: 5px;
    font-size: 1.6em;
}

form input{
    width: 80%;
    padding: 10px;
    margin-bottom: 50px;
    font-size: 1.5em;
    background-color: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    cursor: auto;
    border-radius: 20px;
}

form button{
    width: 80%;
    padding: 10px;
    margin-bottom: 50px;
    font-size: 1.5em;
    background-color: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    cursor: pointer;
    border-radius: 20px;

    
}
