body {
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px 0px;
}

.container {
  background-color: #242b35;
  max-width: 350px;
  margin: 10 auto;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}
form {
  text-align: center;
}

.button:hover {
  color: black;
  background-color: white;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
  color: white !important;
}

input[type="submit"] {
  display: block;
  margin: 20px auto;
  width: 200px;
  padding: 10px;
  background-color: transparent;
  color: #fff;
  padding: 12px 20px;
  border: 2px solid white;
  border-radius: 20px;
  cursor: pointer;
}

.forgot-password {
  text-align: right;
  margin-bottom: 15px;
}

.new-user {
  text-align: center;
}
.message {
  font-family: sans-serif;
  background-color: rgb(247, 89, 89);
  color: white;
  padding: 5px 10px;
  border-radius: 2px;
}

label {
  margin-bottom: 5px;
  text-align: left;
  color: white;
  display: block !important;
  /* Align labels to the left */
}

input[type="email"],
input[type="password"],
input[type="text"],
input[type="tel"],
select {
  width: 100%;
  /* Make input fields take full width */
  box-sizing: border-box;
  /* Include padding and border in the width */
  margin-bottom: 10px;
  /* Add some space between fields */
  padding: 10px;
  /* Add padding inside input fields */
  border: 1px solid #ccc;
  /* Add border to input fields */
  border-radius: 4px;
  /* Add rounded corners to input fields */
}
p{
  color: white;
}
.wallet-point{
  background-color: white;
  color: black;
  padding: 3px;
  border-radius: 50px;
}
