.services-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
/* Responsividad */
@media (max-width: 768px) {
  .services-wrapper,
  .proyectos-wrapper  {
    grid-template-columns: 1fr;
  }
}

.card-inner {
  display: flex;
  align-items: center;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.card-inner .icon-circle {
  font-size: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e0e0e0;
  margin-right: 15px;
  padding:5px;
  box-sizing: border-box; /* Asegura que el padding y border no afecten al tamaño */
}

.desc h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #333;
}

.desc p {
  margin: 5px 0 0;
  color: #555;
}


.auth-options {
  padding: 4rem 1rem;
  background-color: #f9f9f9; 
}

.auth-options .container {
  max-width: 1200px;
  margin: 0 auto;
}

.auth-options .columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.auth-options .column {
  flex: 1 1 45%;
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.auth-options .column:hover {
  transform: translateY(-5px);
}

.auth-options h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #333;
}

.auth-options p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.5rem;
}


/* Responsive */
@media (max-width: 768px) {
  .auth-options .columns {
    flex-direction: column;
  }

  .auth-options .column {
    flex: 1 1 100%;
  }
}


.tools-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.tools-cards .card {
  background: #ecf0f1;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  flex: 1;
  min-width: 250px;
}


.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #555;
}

.input-group input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.input-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: all 0.3s ease;
  min-height:250px;
}



.input-group input.required {
  border: 2px solid red !important;
  outline: none !important;
  box-shadow: none !important; /* elimina el brillo azul del focus */
}

/* También asegúrate que el borde rojo se mantenga en foco */
.input-group input.required:focus {
  border: 2px solid red !important;
  outline: none !important;
  box-shadow: none !important;
}


.input-group input:focus {
  border-color: #8E2DE2;
  outline: none;
  box-shadow: 0 0 4px rgba(142, 45, 226, 0.4);
}

.login-link {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: #666;
}

.result {
  margin-top: 10px;
  font-size: 14px;
  padding: 10px;
  border-radius: 5px;
  min-height: 20px; /* opcional, para que no se colapse si está vacío */
  transition: border 0.3s, background-color 0.3s;
}

.result.error {
  border: 2px solid red;
  background-color: #ffe6e6; /* rojo suave de fondo */
  color: red;
}

.result.success {
  border: 2px solid green;
  background-color: #e6ffe6; /* verde suave de fondo */
  color: green;
}

.result.error {
  color: red;
}

.result.success {
  color: green;
}