
@font-face {
  font-family: 'Estilo Montserrat';
  src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
  /* Si tienes otros formatos de fuente (otf, woff, etc.), puedes agregarlos aquí */
}

body {
    display: flex;
    background-image: url('../css/sunlight-shadow-text-green-blue-circle-696064-wallhere.com.jpg');
    background-size: cover; /* Ajusta el tamaño de la imagen para cubrir todo el fondo */
    background-position: center; /* Centra la imagen en el fondo */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-family: 'Estilo Montserrat', sans-serif;
  }
  .centrar-div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25vh; /* O ajusta la altura según tus necesidades */
  }

  

.input-container {
  position: relative;
  margin-bottom: 20px;
  
 
}

.input-container-i {
  position: absolute;
  top: 5000%; /* Ajusta la posición vertical del icono */
  transform: translateY(-50%);
  left: 10px;
  color: #777;
 
}


.custom-input {
  width: 100%;
  padding: 17px;
  padding-left: 40px;
  border: none;
  border-bottom: 2px solid #012c2a;
  outline: none;
  background: transparent;
  transition: border-color 0.3s;
  font-family: 'Estilo Montserrat', sans-serif;
}
.labelC {
  font-family: 'Estilo Montserrat', sans-serif;
  color: rgb(252, 251, 251); /* Puedes cambiar 'red' por cualquier color que desees */
}
.input-container {
  position: relative;
  margin-bottom: 20px;
}

.custom-input:focus {
  border-color: rgb(122, 198, 248); /* Cambia el color al hacer clic */
}

.input-label {
  position: absolute;
  top: 50%;
  left: 35px; /* Alineación horizontal junto al ícono */
  transform: translateY(-50%); /* Centrado vertical */
  font-size: 14px;
  font-family: 'Estilo Montserrat', sans-serif;
  color: #012c2a;
  pointer-events: none;
  transition: top 0.3s, font-size 0.3s, color 0.3s;
}

.custom-input:focus + .input-label,
.custom-input:not(:placeholder-shown) + .input-label {
  top: -10px; /* Se mueve hacia arriba al enfocar */
  font-size: 12px;
  color: #012c2a; /* Cambia de color */
}

.input-espacio {
  margin-bottom: 20px; /* Ajusta la cantidad de espacio según tus necesidades */
}

.input-container i {
  position: absolute;
  top: 50%; /* Centrado vertical */
  left: 10px; /* Ajuste horizontal */
  transform: translateY(-50%); /* Centrado vertical */
  font-size: 18px; /* Tamaño del ícono */
  color: #012c2a; /* Color del ícono */
}


  

  
  /* Estilo para resaltar errores en el formulario (puedes agregar esto en tu CSS o JavaScript cuando sea necesario) */
  .login-form input.error {
    border-color: #e53935;
  }
  
  /* Estilo para el botón cuando el mouse está sobre él */
  .login-form button:hover {
    background-color: #45a049;
    transform: scale(1.05);
    transition: background-color 0.3s, transform 0.3s;
  }
  
  /* Estilo para el botón cuando está enfocado */
  .login-form button:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  }

.boton5 {
  width: 320px; /* Ancho del botón en píxeles, em, rem, etc. */
  height: 50px; /* Altura del botón en píxeles, em, rem, etc. */
  color: #fff !important;
  font-size: 20px;
  font-weight: 500;
  padding: 0.5em 1.2em;
  background: #012c2a;
  position: relative;
  border: 2px solid #012c2a;
  outline: 1px solid;
  outline-color: rgba(2, 33, 46, 0.068);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  font-family: 'Estilo Montserrat', sans-serif;
}
.boton5:hover {
  box-shadow: inset 0 0 20px rgba(2, 33, 46, 0.068), 0 0 20px rgba(0, 21, 29, 0.288);
  outline-color: rgba(1, 24, 32, 0.253);
  outline-offset: 80px;
  text-shadow: 1px 1px 6px #fff;

}
/* Estilo base para el contenedor del checkbox */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px; /* Ajusta según sea necesario */
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 18px; /* Ajusta según sea necesario */
}

/* Oculta el input nativo */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Estilo del marcador personalizado */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee; /* Color de fondo del checkbox no marcado */
    border: 1px solid #ddd; /* Borde del checkbox no marcado */
    border-radius: 5px; /* Ajusta según sea necesario */
}

/* Estilo del marcador cuando el checkbox está marcado */
.checkbox-container input:checked + .checkmark {
    background-color: #01070c; /* Color de fondo del checkbox marcado */
    border: 1px solid #050505; /* Borde del checkbox marcado */
}

/* Estilo del checkmark (la marca dentro del checkbox) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Muestra la marca cuando el checkbox está marcado */
.checkbox-container input:checked + .checkmark:after {
    display: block;
}

/* Estilo de la marca dentro del checkbox */
.checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

footer {
    font-family: 'Estilo Montserrat', sans-serif;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #012c2a;
}


