@import url('../../css/variables.css');

.center-login {
    margin: 0;
    padding: 0;
    display: flex; 
    flex-direction: column;
    align-items: center;
    font-family: var(--smallfont);
    min-height: 100vh;
}
.cards-container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 2rem 0;
}

.card {
  width: 33%;
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 10px;
  box-sizing: border-box;
  text-align: center;
  color: #004c3f;
}

.circle {
  width: 40px;
  height: 40px;
  background-color: #004c3f;
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.icon {
  font-size: 2rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .cards-container {
    flex-direction: column;
  }

  .card {
    width: 100%;
  }
}


.login-container{
    margin: 10px 0;
    padding: 50px;
    width: 100%;
    max-width: 400px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.0025);
}
  .texto-ayuda {
    color: #666;
    font-size: 0.9em;
    padding: 2px;
  }

h1{
    margin: 0;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0.5px;
    color: var(--secondary-color);
    text-transform: uppercase;
}
form{
    display: flex;
    flex-direction: column;
}

form div{
    margin-top: 15px;
}
form input{
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
    border: none;

}
form button{
    padding: 8px;
    width: 50%;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    border: none;
}

.all-center{
    display: flex;
    align-items: baseline;
    justify-content: center;
}
.label-href{
  color: rgb(126, 126, 255);
  text-decoration: underline;
}