.register-login-wrapper {
  max-width: 400px;
  margin: 60px auto;
  padding: 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  font-family: "Segoe UI", sans-serif;
  text-align: center;
}
.register-login-wrapper h2 {
  font-size: 24px;
  color: #2c1b10;
  margin-bottom: 12px;
}
.register-login-wrapper p {
  margin-bottom: 24px;
  color: #555;
  font-size: 14px;
}
.register-login-wrapper form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}
.register-login-wrapper form button {
  width: 100%;
  padding: 12px;
  background: #a56a45;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
.register-login-wrapper form button:hover {
  background: #925a39;
}
.register-login-wrapper .social-login {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}
.register-login-wrapper .social-login a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48%;
  padding: 10px;
  border-radius: 6px;
  color: white;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}
.register-login-wrapper .social-login a.facebook {
  background: #3b5998;
}
.register-login-wrapper .social-login a.google {
  background: #db4437;
}
.register-login-wrapper small {
  display: block;
  margin-top: 12px;
  font-size: 13px;
}

.bg-auth-section {
  background: url('https://bizweb.dktcdn.net/100/570/902/themes/1027061/assets/bg-breadcrumb.jpg?1750129613863') no-repeat center center;
  background-size: cover;
  height: 33vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  position: relative;
  color: #fff;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
}
.bg-auth-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.breadcrumb {
  position: relative;
  z-index: 2;
  font-size: 16px;
}
.breadcrumb a {
  color: #fff;
  text-decoration: none;
  margin: 0 4px;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.register-login-wrapper {
  margin-top: -100px;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 400px;
  width: 100%;
  z-index: 10;
  position: relative;
}
.verify-code-wrapper {
  margin: 60px auto;
  max-width: 400px;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
}
.verify-code-wrapper input {
  width: 100%;
  padding: 12px;
  margin-top: 20px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.verify-code-wrapper button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background: #a56a45;
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.verify-code-wrapper button:hover {
  background: #925a39;
}