body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff;
}

.root-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 70vh;
}

.styled-card {
  background-color: #fff;
  padding: 32px;
  margin-top: 40px;
  width: 600px;
  height: 600px;
}

.card-content {
  color: white;
  text-align: center;
}

.input-container {
  margin-top: 28px;
  margin-bottom: 28px;
}

input[type="text"] {
  width: 100%;
  padding: 8px;
  border: 1px solid gray; /* Adding a gray border */
  border-radius: 4px;
  background-color: white;
  color: black;
}

button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  background-color: #1976d2;
  color: white;
  cursor: pointer;
}

button:hover {
  background-color: #0d47a1;
}

.endofit {
  height: 400px;
  width: 100%;
}
