* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial;
}

h1 {
  font-size: 50px;
  color: white;
}

label,
p {
  font-size: 18px;
  color: white;
}

input[type="text"],
input[type="password"] {
  border-collapse: collapse;
  background-color: #eaf4ff;
  font-size: 18px;
  border-top: 0px;
  border-right: 0px;
  border-left: 0px;
  border-bottom: 1px solid black;
  border-radius: 0.3em;
  padding-left: 0.4em;
  padding-top: 0.5em;
  width: 100%;
}

input[type="text"]:focus,
input[type="password"]:focus {
  background-color: #bedaf7;
  outline: none;
}

button {
  border-collapse: collapse;
  border: 0px;
  font-size: 18px;
  padding: 0.7em 5em;
  width: 100%;
  border-radius: 0.7em;
  background-color: #1666ba;
}

button:hover {
  background-color: #1666ba;
  color: white;
}

main {
  height: 100vh;
  background-color: #141d38;
  display: flex;
  justify-content: center;
  align-items: center;
}

main form {
  background-color: rgb(13, 20, 43);
  width: fit-content;
  height: 40em;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0em 8em;
  border-radius: 3em;
  box-shadow: 8px 8px 1px 0px rgb(0, 0, 0, 0.5);
  gap: 2em;
}

main form i {
  font-size: 7em;
  color: white;
}

main form #home {
  margin: 50px 0 0 8em;
  display: flex;
  width: 200%;
  gap: 5px;
  text-decoration: none;
}

main form #home i {
  width: fit-content;
  height: fit-content;
}

main form #home i,
main form #home p {
  margin-top: 0;
  font-size: 20px;
}

main form .input-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
  width: 16em;
}

main form .username-wrapper,
.password-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 100%;
}
