body {
    font-family: 'Poppins', sans-serif !important;
    font-size: 15px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}

.container {
    display: flex;
    width: 100%;
    height: 100%;
}

.form-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.form-container form {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.form-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
}

.form-row label {
    width: 150px;
    text-align: left;
    margin-right: 20px;
}

form input,
form select {
    width: calc(100% - 20px);
    outline: none;
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

form button {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
}

.image-container {
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
flex: 1;
display: flex;
justify-content: center;
align-items: flex-end;  /* Asegura que el contenido se alinee en la parte inferior */
overflow: visible;
position: relative;    /* Necesario para posicionar la imagen de manera absoluta */
height: auto;         /* Asegura que el contenedor ocupe toda la altura de la pantalla */
}


@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-8px) rotate(2deg) scale(1.05);
    }
    50% {
        transform: translateY(-12px) rotate(0deg) scale(1.1);
    }
    75% {
        transform: translateY(-8px) rotate(-2deg) scale(1.05);
    }
}

/* Hover effect para los símbolos */
.signature-symbol:hover {
    background-color: rgba(111, 153, 55, 1);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.image-container img {
position: absolute;
bottom: 0;             /* Asegura que la imagen esté pegada al fondo del contenedor */
left: 50%;
transform: translateX(-50%);  /* Centra la imagen horizontalmente */
width: 100%;           /* Asegura que la imagen cubra todo el ancho */
height: auto;          /* Ajusta la altura de manera proporcional */
object-fit: cover;     /* Hace que la imagen cubra todo el espacio del contenedor sin distorsión */
}


.apple-button {
    background-color: #6F9937;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.apple-button:hover {
    background-color: #fff;
    color: #6F9937;
    border: 0.5px solid #6F9937;
}

.logo {
    margin-bottom: -60px;
    object-fit: cover;
}

/* Nuevas clases para los checkbox */
.checkbox-row {
display: flex;
align-items: center;
margin-bottom: 10px;
}

.checkbox-row input {
margin-right: 10px;
appearance: none;  /* Elimina el estilo predeterminado del navegador */
-webkit-appearance: none;
-moz-appearance: none;
width: 20px;   /* Ajusta el tamaño del checkbox */
height: 20px;  /* Ajusta el tamaño del checkbox */
border: 2px solid #6F9937; /* El borde del checkbox */
border-radius: 4px;   /* Opcional: para bordes redondeados */
position: relative;
background-color: #fff;  /* Fondo blanco del checkbox */
cursor: pointer; /* Cambia el cursor cuando se pasa sobre el checkbox */
}

/* Estilo cuando el checkbox está marcado */
.checkbox-row input:checked {
background-color: #6F9937;  /* Color de fondo cuando está marcado */
border-color: #6F9937;  /* Borde de color verde cuando está marcado */
}

.checkbox-row input:checked::before {
content: '\2713';  /* Carácter de marca (?) */
color: #fff;  /* Color del tick */
font-size: 14px;  /* Ajusta el tamaño del tick */
position: absolute;
top: 2px;  /* Ajusta la posición del tick dentro del checkbox */
left: 5px;  /* Ajusta la posición del tick dentro del checkbox */
}
@media (max-width: 768px) {
    .image-container {
        display: none; 
    }
    .form-container {
        flex: 1; 
        max-width: 100%;
    }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 40px;
  border-radius: 20px;
  max-width: 450px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(111, 153, 55, 0.1);
  position: relative;
  animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px) scale(0.9);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.modal-icon {
  font-size: 48px;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
  display: block;
  text-align: center;
  color: #FF5733;
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.modal-content h3 {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  line-height: 1.4;
}

.button-close {
  padding: 12px 30px;
  background: linear-gradient(135deg, #FF5733 0%, #e64a2e 100%);
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 87, 51, 0.3);
  min-width: 120px;
}

.button-close:hover {
  background: linear-gradient(135deg, #e64a2e 0%, #d43f25 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 87, 51, 0.4);
}

.button-close:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(255, 87, 51, 0.3);
}

/* Ocultar cualquier contenido no deseado */
body::before,
body::after {
  display: none !important;
  content: none !important;
}
