*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 600px; /* Ajusta el tamaño máximo del container */
    margin: 90px auto; /* Ajusta el margen superior e inferior */
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.titulo{
    color: #000000;
    font-size: 20px;
    align-items: center;
    justify-content: center;
}


form{
    width: 96%;
    height: 100%;
    margin: auto;
    padding: 20px;
}

form>p{
    padding: 10px 5px;
    font-size: 25px;
    margin: 20px auto;
}

form div {
    height: 60px;
    margin: 20px auto;
    padding: 5px;
}

form .pr{
    height: 110px;
    display: none;
}

form div label{
    background: #f5f5f5;
    display: block;
    padding: 12px;
    border-radius: 4px;
    width: 90%;
    line-height: 25px;
    border: 2px solid #e5e5e5;
    position: relative;
}

form div label::before{
    position: absolute;
    content: "Cargar";
    right: -2px;
    top: -2px;
    width: 100px;
    height: 107%;
    line-height: 50px;
    background: #760F43;
    color: #fff;
    text-align: center;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.in{
    position: absolute;
    top: -1px;
    left: -15px;
    width: 150%;
    border: none;
    border-radius: 5px 0px 0px 5px;
    background: white;
    padding: 15px;
    border-bottom: 2px solid rgb(238, 238, 238);
    border-right: 2px solid rgb(238, 238, 238);
    transition: all 0.3s;
    color: rgb(7, 7, 7) !important;
    font-weight: 400;
    font-size: 17px;
    box-shadow: 1px 1px 2px rgb(238, 238, 238);
    margin-bottom: -5px;
    outline: none !important;
}

.but{
    position: relative;
    top: -16px;
    left: 100px;
}

.btn{
    border-radius: 0px 5px 5px 0px;
	margin: 10px;
    padding: 20px 48px;
    color: #fff;
    font-size: 18px;
    outline: none;
    border: none;
    background: #192a56;
    cursor: pointer;
}
.btn:hover{
	background-position: right;
	background: #760F43;
	color: #fff;
}

/* CSS para pantallas con ancho mayor o igual a 1920px */
@media (min-width: 1920px) {
    .container {
      max-width: 1200px; /* Ajustamos el tamaño máximo del container a 1200px */
      margin: 90px auto; /* Centramos el container horizontalmente */
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .mb-4 {
      margin-bottom: 40px; /* Ajustamos el margen inferior del div */
    }
  
    .px-2 {
      padding: 20px; /* Ajustamos el padding del div */
    }
  
    .col-12, .col-md-6 {
      width: 600px; /* Ajustamos el ancho del div en pantallas grandes */
      margin: 0 auto; /* Centramos el div horizontalmente */
    }
  
    .but {
        position: relative;
        top: -30px;
        text-align: center; /* Centramos el botón */
        display: flex;
        flex-direction: column;
        align-items: center;
    }
  
    /* Ajustamos el tamaño del input para que sea igual al botón */
    .but .in {
      width: 200px; /* Mismo ancho que el botón */
      height: 150px; /* Mismo alto que el botón */
      font-size: 16px; /* Tamaño de fuente para el input */
    }
  
    /* Ajustamos el tamaño del botón para una pantalla más grande */
    .btn {
      width: 200px;
      height: 150px;
      padding: 25px 0;
      font-size: 20px;
    }
  }


