body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
  height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-y: scroll;
  background-color: #0f426f;
  font-family: 'Poppins', sans-serif;
  
}

main {
  display: flex;
  flex-flow: row wrap;
  box-sizing: border-box;
  position: relative;
  align-content: center;
  justify-content: flex-start;
  background-color: white;
  border: white solid 20px;
  border-radius: 20px;
  gap: 50px;
  min-width: 400px;
  width: 50%;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin: 25px 25px 25px 25px;
}

form {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 10px;
  gap: 35px;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 250px;
  width: 100%;
  font-size: 0.95rem;
  padding: 5px;
  box-sizing: border-box;
  color: #0f426f;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.card.form {
  gap: 5px;
}

.card.input {
  display: flex;
  height: 45px;
  border-radius: 10px;
  border: 2px solid rgba(15, 66, 111, 0.2);
  background-color: white;
}

.card.input:focus {
  outline: none;
  border-color: #ea854b;
  box-shadow: 0 0 0 3px rgba(234, 133, 75, 0.1);
  background: #fff;
  transform: translateY(-1px);
}

.logpage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

#submitbtn {
  border: none;
  min-width: 0;
  width: 50%;
  font-size: 1rem;
  font-weight: 900;
  background-color: #ea854b;
  color: white;
}

#submitbtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

