body {
  font-family: 'Poppins', sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  width: 100%;
  max-width: 600px;
  margin: auto;
}

form {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.5rem; /* Ajusta el tamaño de fuente según tus preferencias */
}

label {
  text-align: center;
  display: block;
  margin-bottom: 8px;
  font-size: 1.0rem; /* Ajusta el tamaño de fuente según tus preferencias */
}

input {
  width: 100%;
  padding: 8px;
  margin-bottom: 16px;
  box-sizing: border-box;
  font-size: 1.0rem; /* Ajusta el tamaño de fuente según tus preferencias */
}


.form-check {
  text-align: center; /* Centra horizontalmente el contenido */
}


.checkbox-image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 100px;
  width: 100px;
    margin-right: 10px;
  display: inline-block;
} 
.form-check-input {
 transform: scale(1.5); 
}


.checkbox-image input {
  margin: 0;
}

.checkbox-image img {
  max-width: 100%;
  max-height: 100%;
  display: inline-block;
}


button {
  background-color: #4caf50;
  color: white;
  padding: 8px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 50%;
  font-size: 1.0rem; /* Ajusta el tamaño de fuente según tus preferencias */
  display: inline-block;
    margin-right: 10px;
}

button:hover {
  background-color: #45a049;
}

/* ... (resto del código) */
.btn-toggle {
  width: 100%;
  text-align: left;
  margin-bottom: 10px;
}

.active {
  background-color: #007bff;
  color: #fff;
}

.image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 300px;
  width: 100%;
  margin-right: 0px;
  flex: 0 0 auto;
  display: inline-block;
  
}








.wrap{
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.grid-container {
  display: grid;
  grid-template-columns: auto;
  place-items: center;
}

.icono{
  background-color: #4acaa8;
  color: #ffffff;
  padding: 10px;
  border-radius: 50px;
}

.grid-container > div, .grid-container1 > div {
  padding: 20px;
  font-size: 30px;
  display: grid;
  grid-template-columns: 100px auto;
  align-items: center;

}

p{
  display: inline-block;
  text-align: left;
}


.form-check-label {
  font-size: 16px; /* Ajusta el tamaño de la letra según sea necesario */
}








.signupFrm {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}


.form {
  background-color: white;
  width: 400px;
  border-radius: 8px;
  padding: 20px 40px;
  box-shadow: 0 10px 25px rgba(92, 99, 115, .42);
}

.title {
  font-size: 50px;
  margin-bottom: 50px;
}

.inputContainer {
  position: relative;
  height: 45px;
  width: 100%;
  margin-bottom: 17px;
}






















.input {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  border: 1px solid #0f72de;
  border-radius: 7px;
  font-size: 16px;
  padding: 0 20px;
  outline: none;
  background: none;
  z-index: 1;
}


.label {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 0 4px;
  background-color: white;
  color: #0f72de;
  font-size: 16px;
  transition: 0.5s;
  z-index: 0;
}

::placeholder {
  color: transparent;
}

.submitBtn {
  display: block;
  margin-left: auto;
  padding: 15px 30px;
  border: none;
  background-color: purple;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 30px;
}

.submitBtn:hover {
  background-color: #0f72de;
  transform: translateY(-2px);
}
.input:focus + .label {
  top: -7px;
  left: 3px;
  z-index: 10;
  font-size: 14px;
  font-weight: 600;
  color: purple;
}

.input:not(:placeholder-shown)+ .label {
  top: -7px;
  left: 3px;
  z-index: 10;
  font-size: 14px;
  font-weight: 600;
}

.input:focus {
  border: 2px solid purple;
}















