.container-fluid {
  max-width: 1600px;
}

body {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  background: #f7f9fc;
}

.signup-form-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.signup-form-container .signup-div {
  flex: 1 1 300px;

}

.left-side {

  background: linear-gradient(to bottom right, #0052D4, #4364F7);
  position: relative;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 20px;
  /* max-width: 500px; */
  margin: auto;
}

.left-side .overlay {
  background: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 10px;
}

.left-side h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.left-side p {
  font-size: 18px;
}

.right-side {
  /* max-width: 500px; */
  margin: auto;
}

.form-container {
  background: #fff;
  padding: 20px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.form-group {
  position: relative;
  /* min-height: 70px; */
  margin-bottom: 5px;
}

.form-group input {
  width: 100%;
  padding: 15px 10px 15px 40px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f1f5f9;
}

.form-group i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #555;
}

.phone-group {
  display: flex;
  gap: 5px;
}

.mobile_code {
  max-width: 80px;
}

.phone-group select,
.phone-group input {
  /* flex: 1;
	padding: 10px; */
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f1f5f9;
  height: 50px;
}

.checkbox-group {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.checkbox-group input {
  margin-right: 8px;
}

.checkbox-group a {
  color: #f57c00;
  text-decoration: none;
  font-weight: 500;
}

.btn-primary {
  width: 100%;
  padding: 12px;
  background: linear-gradient(to right, #0052D4, #4364F7, #6FB1FC);
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 10px;
}

.btn-primary:hover {
  background: linear-gradient(to right, #0041b3, #3552c5, #5a9de6);
}



.input-group {
  position: relative;
  /* margin-bottom: 20px; */
}

.floating-input {
  font-size: 16px;
  padding: 14px 12px 4px 36px;
  display: block;
  width: 100%;
  height: 50px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: transparent;
}

.floating-input:focus {
  outline: none;
  border-color: #007bff;
}

.floating-textarea {
  font-size: 16px;
  padding: 14px 12px 4px 36px;
  display: block;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: transparent;
}

.floating-label {
  position: absolute;
  pointer-events: none;
  left: 36px;
  top: 15px;
  transition: 0.2s ease all;
  font-size: 14px;
  /* display: none; */
}

.floating-input:focus~.floating-label,
.floating-input:not(:placeholder-shown)~.floating-label,
.floating-select:focus~.floating-label,
.floating-select:valid~.floating-label,
.floating-textarea:focus + .floating-label,
.floating-textarea:not(:placeholder-shown) + .floating-label {
  top: -15px;
  left: 32px;
  font-size: 12px;
  background: #f1f1f1;
  padding: 2px 15px;
  color: #007bff;
  border: 1px solid #007bff;
  border-radius: 15px 0px !important;
  display: block;
}



.floating-select {
  font-size: 16px;
  padding: 15px 10px 15px 30px;
  display: block;
  width: 100%;
  height: 50px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f1f5f9;
  appearance: none;
}



.error_msg {
  margin: 0px;
  color: #ff0000;
}

.invalid {
  color: #ff0000;
}

.valid {
  color: #00ff00;
}


