@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

body{
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    
}
.container-registro{
    display: flex;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    gap:5%
}

.container-img{
    width: 35%;
    height: 100%;
    background-image: url("../img/imageRegistro.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.container-form{
    width: 60%;
    display: block;
    max-height: 100vh;
    
    overflow-y: auto;
}
form, input{
    text-align: center
}
.btn{
    display: flex; 
    justify-content: flex-end;
    align-items: center;
    button{
        background-color: #3278d3;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 8px;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
}
form button{
    background: #3278d3;
    height: 40px;
    border-radius: 5px;
    border: none;
    color:white;
    font-weight: bold;
}

.iti {
  width: 100%;
}
.iti input,
.iti input[type="tel"] {
  padding-left: 48px !important;  /* espacio para la bandera */
  height: 45px;                   /* igual al resto de inputs */
  border-radius: 8px;
  border: 1px solid #c1c1c1;
  width: 100%;
  text-align: center;
}

@media(min-width:1200px){
    .container-img{
        border-right: 40px solid #004E5F;
    }
    form{
        width: 100%;
        padding: 10px 100px 10px 100px;
        border:none !important;
    }
    .containter-btnReturn{
        width: 100%;
        padding: 20px 0;
        background: #B9B9B9B2;
        margin-bottom: 20px;
    }
    .form-content{
        margin-top: 20px;
        padding-right: 50px;
    }
}