/* Registration Page Styles */
.reg-page {
  /* min-height: calc(100vh - 150px); */
  background: url("../images/reg-bg.jpg") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 95px 20px;
}

.reg-container {
  display: flex;
  width: 100%;
  max-width: 1440px;
  gap: 40px;
}

.left-side {
  flex: 1;
  color: white;
  /* padding: 40px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left-side h1 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: bold;
}

.divider {
  width: 80px;
  height: 4px;
  background-color: #62a8f4;
  margin-bottom: 20px;
}

.left-side p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.right-side {
  flex: 1;
  display: flex;
  justify-content: end;
  align-items: center;
}

.reg-form {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 465px;
}

.reg-form h2 {
  text-align: center;
  color: #007bff;
  margin-bottom: 25px;
  font-size: 24px;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-group input {
  width: 100%;
  padding: 12px 15px 12px 40px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: #007bff;
}

.form-group .icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

.form-group .captcha-img {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  cursor: pointer;
}

.reg-btn {
  width: 100%;
  padding: 12px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 20px;
}

.reg-btn:hover {
  background-color: #0056b3;
}

.login-link {
  text-align: center;
  margin-top: 20px;
}

.login-link a {
  color: #007bff;
  text-decoration: none;
  font-size: 14px;
}

.login-link a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .reg-container {
    flex-direction: column;
  }

  .left-side,
  .right-side {
    width: 100%;
  }

  .left-side {
    padding: 20px;
  }

  .reg-form {
    padding: 20px;
  }
}
