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

body {
  font-family: 'Courier New', Courier, monospace;
  background-color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}
h1 {
  margin-bottom: 20px;
}
p {
  margin-top: 20px;
}
.main-container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  display: flex;
}

.container {
  padding: 20px;
}
#signin-form {
  display: none;
}
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
a {
  color: #110e0e;
}
input[type="text"],
input[type="password"],
input[type="number"],
input[type="email"]
 {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  padding: 10px;
  background-color: #110e0e;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #110e0e;
}
