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

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #333;
  height: 100vh;
  display: flex;
  justify-content: center;
  padding: 10px;
}

.container {
  width: auto;
  height: fit-content;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  gap: 20px;
}

.form-container {
  width: fit-content;
  height: fit-content;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

h1 {
  font-size: 1.8rem;
  text-align: center;
}
p {
  font-size: 1rem;
}

button {
  font-size: 1rem;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
}
input {
  font-size: 1.2rem;
  padding: 10px 20px;
  border: #333 solid 1px;
  border-radius: 5px;
  background-color: transparent;
  color: #000;
  cursor: pointer;
}
