* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  margin: 0;
  background: #ffffff;
}

.register-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;   
  padding: 60px 20px;
  align-items: flex-start;
  padding-top:120px;
}


.register-container {
  width: 100%;
  max-width: 1200px;        
  display: flex;
  background: #ffffff;
}


.left-section {
  width: 45%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.left-section img {
  width: 260px;
  margin-bottom: 20px;
}

.left-section h1 {
  font-size: 42px;
  margin: 10px 0;
  color: #232323;
}

.left-section p {
  color: #6c757d;
  font-size: 16px;
  max-width: 420px;
}


.right-section {
  width: 55%;
  padding: 60px;
  background: #ffffff;
}


form {
  width: 100%;
  max-width: 520px;
}


.row {
  display: flex;
  gap: 15px;
}


.input-box {
  position: relative;
  width: 100%;
  margin-bottom: 16px;
}

.input-box i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 14px;
}

.input-box input,
.input-box select {
  width: 100%;
  padding: 12px 12px 12px 42px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  background: #fff;
}

.input-box input:focus,
.input-box select:focus {
  outline: none;
  border-color: #0d6efd;
}


.captcha {
  border: 1px solid #ddd;
  padding: 15px;
  margin: 18px 0;
  width: 300px;
}


.register-btn {
  width: 100%;
  padding: 14px;
  background: #0c5adb;
  border: none;
  color: #fff;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

.register-btn:hover {
  background: #0b5ed7;
}


.or-divider {
  display: flex;
  align-items: center;
  margin: 25px 0;
  color: #999;
  font-size: 13px;
}

.or-divider::before,
.or-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ddd;
}

.or-divider::before {
  margin-right: 10px;
}

.or-divider::after {
  margin-left: 10px;
}


.register1 {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.register {
  color: #6c757d;
}

a {
  color: #007bff;
  text-decoration: none;
  margin-top: 15px;
}

a:hover {
  text-decoration: underline;
}

