html {
  height: 100svh;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  height: 100svh;
  justify-content: space-between;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
  position: relative;
  flex-direction: column;
  background: url(/wp-content/uploads/2023/07/Haut_Souleille-_fond-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}



form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(500px, 75%);
  gap: 1.5rem;
  text-align: center;
}

input {
  height: 2rem;
}



input[type='image'] {
  width: 55px;
  height: 55px;
  position: relative;
  top: 5px;
  cursor: pointer;

  &:hover {
    opacity: 0.4;
  }
}

input[type='password'] {
  border: none;
  font-size: 1rem;
  padding: 0.5em;
}

.error {
  position: absolute;
  top: 54%;
  left: 50%;
  translate: -50% -50%;
  color: red;
  width: 100%;
}

.enter-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.2rem;
}

img {
  height: auto;
  max-width: 100%;
  outline: none;
  vertical-align: middle;
}

.input-fields {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}