body {
  background: #F6F5FC;
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}
.dz-login-outer {
  min-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dz-login-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(120,45,212,0.10);
  max-width: 1100px;
  width: 100%;
  height: 600px;
  min-height: 400px;
  overflow: hidden;
  z-index: 1;
}
.dz-login-visual, .dz-login-bg-visual {
  flex: 1 1 0;
  background: #ede9fe;
  background-image: url('../img/register-visual.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 24px 0 0 24px;
  position: relative;
  min-width: 440px;
  max-width: 600px;
  height: 100%;
  min-height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.dz-login-bg-visual::before {
  content: '';
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(120,45,212,0.18);
  border-radius: 24px 0 0 24px;
  z-index: 1;
}
.dz-login-bg-visual > * {
  position: relative;
  z-index: 2;
}
.dz-login-visual-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  color: #fff;
  padding: 48px 32px 40px 32px;
  width: 100%;
  text-align: left;
}
.dz-login-form-wrap {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  min-width: 340px;
  padding: 0 48px;
}
.dz-login-form-box {
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  min-width: 0;
  max-width: 340px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.dz-login-title {
  font-size: 2rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 8px;
  text-align: left;
}
.dz-login-desc {
  color: #6B7280;
  font-size: 1.05rem;
  margin-bottom: 18px;
  font-weight: 500;
}
.dz-login-form-box label {
  font-weight: 600;
  color: #6B7280;
  margin-bottom: 6px;
  display: block;
  font-size: 1rem;
}
.dz-login-form-box input[type="email"],
.dz-login-form-box input[type="password"],
.dz-login-form-box input[type="text"],
.dz-login-form-box input[type="tel"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid #E5E0F7;
  font-size: 1rem;
  margin-bottom: 12px;
  background: #F9F9FF;
  color: #222;
  font-family: inherit;
  transition: border 0.2s;
}
.dz-login-form-box input:focus {
  border: 1.5px solid #A78BFA;
  outline: none;
}
.dz-btn {
  width: 100%;
  background: #A78BFA;
  color: #fff;
  font-size: 1.13rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 14px 0;
  border: none;
  box-shadow: 0 2px 8px 0 rgba(171, 148, 255, 0.10);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  margin-top: 8px;
  cursor: pointer;
}
.dz-btn-primary:hover {
  background: #782DD4;
  color: #fff;
}
.dz-login-bottom {
  text-align: center;
  margin-top: 18px;
  font-size: 1rem;
  color: #6B7280;
}
.dz-login-bottom a {
  color: #A78BFA;
  text-decoration: none;
  font-weight: 600;
  margin-left: 4px;
  transition: color 0.2s;
}
.dz-login-bottom a:hover {
  color: #782DD4;
}
.register-row {
  display: flex;
  gap: 12px;
  margin-bottom: 0.5rem;
}
.register-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.register-password-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.register-password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: #A78BFA;
  padding: 0;
}
.register-password-checks {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.98rem;
  color: #aaa;
  align-items: center;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #aaa;
}
.check-item.ok {
  color: #22c55e;
  font-weight: 600;
}
@media (max-width: 1200px) {
  .dz-login-container { max-width: 98vw; }
  .dz-login-visual, .dz-login-bg-visual { min-width: 320px; max-width: 50vw; }
}
@media (max-width: 900px) {
  .dz-login-container { flex-direction: column; height: auto; min-height: 0; }
  .dz-login-visual, .dz-login-bg-visual {
    width: 100vw; min-width: 0; max-width: 100vw; border-radius: 24px 24px 0 0; height: 260px;
  }
  .dz-login-form-wrap { padding: 24px 10px; }
}
