body {
  background-image: url("../img/fondo1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
}
.login-cont {
  width: 40%;
  margin-left: 30%;
  margin-right: 30%;
  background-color: #ffffff83;

  height: auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  justify-content: center;
}
.login-titulo {
    font-size: 2vmax;
    text-align: center;
    margin-bottom: 30px;
    color: #1b1b1b;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}
.login-group-input {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1.2vmax;
  display: block;
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  outline: none;
  &:focus {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  &:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    background-color: #fafafa;
  }
  &:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
  }
  &.error {
    border-color: #ff0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
  }
  &.success {
    border-color: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.4);
  }
}
.login-group-input label {
  display: block;
  font-size: 1.1vmax;
  padding-bottom: 5px;
  color: #1b1b1b;
}
.login-group-input input {
  width: 100%;
  padding: 0;
  font-size: inherit;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  background-color: transparent;
  &:disabled {
    cursor: not-allowed;
  }
  &.invalid {
    border-color: #ff0000;
  }
  &.valid {
    border-color: #00ff00;
  }
  &.empty {
    border-color: #ccc;
  }
  &.success {
    border-color: #00ff00;
  }
  &.error {
    border-color: #ff0000;
  }
}
button{
    width: 100%;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #ffffff;
    font-size: 1.2vmax;
    cursor: pointer;
    transition: background-color 0.3s ease;
    &:hover {
      background-color: #0069d9;
    }
    &:disabled {
      background-color: #cccccc;
      cursor: not-allowed;
    }
}
a{
    color: #007bff;
    text-decoration: none;
    font-size: 1.2vmax;
    transition: color 0.3s ease;
    &:hover {
      color: #0062cc;
    }
    &:focus {
      outline: none;
    }
    &:active {
      color: #0056b3;
    }
    &:visited {
      color: #00478b;
    }
    &:disabled {
      color: #cccccc;
      cursor: not-allowed;
    }
}
