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

html, body {
  width: 100%;
  display: flex;  
  align-items: center;
  justify-content: center;  
  margin: auto;
  font-family: 'Poppins', sans-serif;
}

body {
  max-width: 560px; 
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-color: #F0F0F0; 
  overflow: hidden; 
}

#container {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;  
}

h1 { 
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;  
  color: #0085f2;
}

h2 {
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;  
  line-height: 150%;
  color: #0085f2;
}

p {
  margin-bottom: 24px;
  font-size: 18px;
  text-align: center;  
  line-height: 150%;
  color: #0085f2;
}

input {
  width: 106px;
  height: 40px;
  font-size: 18px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  border: 1px solid #9D9797;
  border-radius: 8px;
  margin-bottom: 24px;
  outline: none;
  text-align: center;
  color: #494848;
}

input::placeholder {
  font-weight: 500;
  color: #9D9797;
  opacity: 1;
}

button {
  min-width: 106px;
  min-height: 40px;
  padding: 10px 28px;
  margin-bottom: 24px;
  background-color: #0085f2;
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  border-radius: 8px;
  border: 1px solid #0085f2;
  outline: none;
  color: #ffffff;
  transition-duration: 0.4s;
}

button:hover {
  background-color: #ffffff;
  color: #0085f2;
  border: 1px solid #0085f2;
}
