* {
  box-sizing: border-box;
}

body {
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  min-height: 100vh;
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.Container {
  width: 100%;
  max-width: 400px;
  text-align: center;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.SignUp h2 {
  margin-bottom: 10px;
  color:#EC243B;
}

.SignUp p {
  font-size: 14px;
  text-align: center;
  margin-bottom: 15px;
}

.input-container {
  width: 100%;
  margin-bottom: 15px;
  position: relative;
}

.input-container input,
.input-container select {
  width: 100%;
  padding: 10px 35px 10px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.input-container input::placeholder {
  color: #aaa;
}

.input-container img {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  cursor: pointer;
}

.SignUp button {
  width: 70%;
  padding: 10px;
  background-color:#EC243B;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 15px;
}

.SignUp button:hover {
  background-color: #EC243B;
  text-decoration: underline;
}

.already-have-account-text {
  margin-top: 15px;
  font-size: 14px;
  text-align: center;
}

.already-have-account-link {
  color: #EC243B;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.already-have-account-link:hover {
  color: #EC243B;
  text-decoration: underline;
}

.password-hint {
  font-size: 12px;
  color: gray;
  text-align: center;
  margin-top: -10px;
  margin-bottom: 10px;
}