body {
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
  font-family: "Poppins", sans-serif;
  height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup-container {
  width: 100%;
  max-width: 650px;
  background-color: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid #f4d5cf;
}

h4 {
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.form-label {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 4px;
}

.form-control,
.form-select {
  height: 38px;
  font-size: 14px;
  border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
  border-color: #f99583;
  box-shadow: 0 0 0 0.2rem rgba(249, 149, 131, 0.25);
}

.btn-custom {
  background-color: #f99583;
  color: #fff;
  font-weight: 500;
  padding: 10px;
  font-size: 16px;
  border-radius: 10px;
  transition: 0.3s;
}

.btn-custom:hover {
  background-color: #e67e6c;
  color: white;
}

.password-wrapper {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #888;
  font-size: 14px;
}

.toggle-password:focus {
  outline: none;
}

.text-danger {
  font-size: 12px;
  margin-top: 2px;
}

.tnc{
  color: #f99583;
  text-decoration: none;
}

.success-container {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
}
.success-container h2 {
  color: #28a745;
}
.success-container p {
  margin-top: 15px;
  color: #555;
}
.back-link {
  margin-top: 25px;
  display: inline-block;
  color: #007bff;
  text-decoration: none;
}
.back-link:hover {
  text-decoration: underline;
}
.back-link{
  color: #f99583;
  text-decoration: none;
}
.foot_label{
  font-size: 75%;
}

.login-container {
  max-width: 400px;
  margin: 80px auto;
  padding: 30px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border: 2px solid #f4d5cf;
}
.form-control:focus {
  box-shadow: none;
  border-color: #f99583;
}
.btn-custom {
  background-color: #f99583;
  color: #fff;
}
.btn-custom:hover {
  background-color: #FFFFFF;
  color: #e67e6c;
}
.access-container {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}
.access_btn{
  background-color: #f99583;
  color: #FFFFFF;
}
.access_btn:hover{
  background-color: #FFFFFF;
  color: #e67e6c;
  border: 1px solid #e67e6c;
}