

.container{
    display: flex;
    width: 65%;
    box-shadow: 0 0 5px rgba(0 ,0 , 0 , 0.4);
    margin: auto;
    margin-top: 10%;
    position: relative;
}

.btn-regresar{
    
    position: absolute;
    right: 20px;
    top: 20px;
    padding: 9px;
    border-radius: 17px;
    background: #4456FF;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}




.infor{
    background-image: url(Home/static/imagenes/cacao.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 150px 50px;
    width: 50%;
    text-align: center;
}

.txt-1{
    color: white;
    text-transform: capitalize;
    font-size: 20px;
    margin-bottom: 25px;

}

.infor h2{
    color: white;
    text-transform: uppercase;
    font-size: 50px;
    margin-bottom: 25px;
    
}

.infor hr{
    width: 55px;
    border: 4px solid white;
    margin-left: 170px;
    margin-bottom: 25px;
}

.txt-2{
    color: white;
    font-size: 18px;

}

.formulario {
    padding: 150px 100px;
    width: 50%;
    text-align: center;
    background-color: white;
}

.formulario h2 {
    color: grey;
    font-size: 30px;
    margin-bottom: 25px;
    
}

.formulario p {
    color: gray;
    font-size: 16px;
    margin-bottom: 25px;
    
}

.formulario p {
    color: gray;
    font-size: 16px;
    margin-bottom: 25px;
    
}

.inputs{
    display: flex;
    flex-direction: column;

}

.box{
    outline: none;
    border-color: grey;
    border-style: solid;
    padding: 15px 35px;
    margin-bottom: 20px;
    background-color: white;
}

.inputs a{
    color: grey;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 35px;
}

.submit {
    background-color: #414040;
    padding: 15px;
    border: 0;
    color: white;
    font-size: 18px;
    text-transform: uppercase;
    border-radius: 25px;
    cursor: pointer;
   
}

.submit:hover{
    background-color: #8C8C8D;

}

@media( max-width:990px){
    .container {

        width: 350px;
        height: 600px;
        margin-top: 100px;
    }

    .infor{
        display: none;
    }

    .formulario{
        width: 100%;
        padding: 30px;
        border-radius:35px;
    }

    .formulario h2 {
        margin-top: 50px;
    }
    
}




