@import url("https://fonts.googleapis.com/css2?family=Krona+One&display=swap");

body {
  width: 100vw;
  overflow-y: scroll;
  overflow-x: hidden;
  margin: 0;
  min-width: 400px;
}

.content {
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(
    180deg,
    #1e0074 3.65%,
    #9700dd 22.92%,
    #c51bf9 43.82%,
    #ff6caa 69.27%,
    #e24b64 100%
  );
}

.login-container {
margin-top: 30px;
  border-radius: 10px;
  background: rgba(201, 201, 201, 0.5);
  width: 80%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Krona One", sans-serif;
  overflow: hidden;
}

.reserve {
  height: 7vh;
  max-height: 100px;
}

.login-container img {
  margin-top: 10px;
  width: 80%;
  height: auto;
  max-width: 300px;
  min-width: 250px;
}

form {
  margin-bottom: 20px;
  padding: 0px;
  max-width: 384px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  border: 1px solid #fff;
  border-radius: 10px;
  background-color: transparent;
  color: white;
  margin: 20px 0px;
  font-family: "Krona One", sans-serif;
}

input::placeholder {
  color: white;
  font-family: "Krona One", sans-serif;
}

button {
  width: 100%;
  padding: 20px;
  margin: 20px 0px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(
    90deg,
    #628eff 0%,
    #7568e7 36.98%,
    #8037c0 68.75%,
    #5b087a 100%
  );
}

button a {
  color: white;
  font-family: "Krona One", sans-serif;
  text-decoration: none !important;
  font-size: 20px;
}

.remember-me {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: white;
  font-size: 12px;
  margin-bottom: 20px;
}

form a {
  color: white;
  text-decoration: none;
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
  text-align: center;
}

input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin-right: 10px;
}

.register-link {
  color: white;
  font-size: 12px;
}
