@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container {
  background-image: url("./login&registation.jpg");
  background-size: cover;
  width: 100%;
  background-repeat: no-repeat;
  height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.box {
  margin-top: 3rem;
}
p {
  padding: 20px;
  text-align: center;
}
form {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-left: 20px;
}
label {
  color: white;
  display: block;
  margin-bottom: 5px;
  font-family: "Archivo", sans-serif;
}

input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 10px;
  background-color: #eaf2f6;
  font-family: "Archivo", sans-serif;
}
