@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

body {
  margin: 0;
  font-family: 'Ubuntu', sans-serif;
  overflow-x: hidden;
}

.big-image {
  height: 100vh;
  width: 100vw;
  position: relative;
  background-size: contain;
  background-position: 50% 50%;
  background-image: url('/img/bg.png');
}

.overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 139, 0.5),
    rgba(77, 11, 147, 0.5)
  );
  background-size: 300% 300%;
  animation: gradient-shift 12s infinite alternate ease-in-out;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.overlay h1 {
  font-size: 42px;
  letter-spacing: 0px;
  margin: 0 0 5px;
}

.overlay p {
  margin: 0;
  font-size: 18px;
}
.form-style {
  color: black;
  /* border: 2px solid #54196b; */
  border: 3px solid white;
  border-radius: 20px;
  width: 300px;
  padding: 30px;
  background: #ffffff;
  margin: 50px auto;
  animation: glow-pulse 8s infinite;
}

@keyframes glow-pulse {
  0% {
    box-shadow: 0px 0px 20px rgba(0, 0, 255, 0.5);
    -moz-box-shadow: 0px 0px 20px rgba(0, 0, 255, 0.5);
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 255, 0.5);
  }
  /* 33% {
        box-shadow: 0px 0px 30px rgba(255, 255, 255, 1);
        -moz-box-shadow: 0px 0px 30px rgba(255, 255, 255, 1);
        -webkit-box-shadow: 0px 0px 30px rgba(255, 255, 255, 1);
      } */
  50% {
    box-shadow: 0px 0px 30px rgba(128, 0, 128, 1);
    -moz-box-shadow: 0px 0px 30px rgba(128, 0, 128, 1);
    -webkit-box-shadow: 0px 0px 30px rgba(128, 0, 128, 1);
  }
  100% {
    box-shadow: 0px 0px 20px rgba(0, 0, 255, 0.5);
    -moz-box-shadow: 0px 0px 20px rgba(0, 0, 255, 0.5);
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 255, 0.5);
  }
}
.form-style h2 {
  background: #2f0e3c;
  text-transform: uppercase;
  border-radius: 17px 17px 0 0;
  color: white;
  font-size: 16px;
  font-weight: 100;
  text-align: center;
  padding: 20px;
  margin: -30px -30px 30px -30px;
}
.form-style input[type='text'],
.form-style input[type='password'] {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  outline: none;
  display: block;
  width: 100%;
  padding: 7px;
  border: none;
  border-bottom: 1px solid #ddd;
  background: transparent;
  margin-bottom: 10px;
  font:
    16px Arial,
    Helvetica,
    sans-serif;
  height: 45px;
}

.form-style label {
  color: rgb(32, 32, 32);
}

.form-style input[type='button'],
.form-style input[type='submit'] {
  background-color: #000000;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-size: 14px;
  padding: 8px 18px;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid black;
  border-radius: 10px;
  width: 200px;
}
.btn {
  background-color: #000000;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-size: 14px;
  padding: 8px 18px;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid black;
  border-radius: 10px;
}

.btn:hover {
  background-color: #2f0e3c;
}

.center {
  text-align: center;
}

.form-style input[type='button']:hover,
.form-style input[type='submit']:hover {
  background-color: #2f0e3c;
}
