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-bg-decor {
  position: fixed;
  z-index: 0;
  pointer-events: none;
}
.dz-bg-decor.elma {
  left: 2vw; top: 6vh; width: 60px; opacity: 0.13;
}
.dz-bg-decor.yaprak {
  right: 3vw; bottom: 8vh; width: 80px; opacity: 0.10;
}
.dz-bg-decor.bant {
  left: 50vw; bottom: 2vh; width: 90px; opacity: 0.09;
}
.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: 900px;
  width: 100%;
  height: 600px;
  min-height: 400px;
  overflow: hidden;
  z-index: 1;
}
.dz-login-visual {
  flex: 1 1 0;
    background-image: url('../img/login-visual.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 24px 0 0 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-width: 340px;
  max-width: 420px;
  padding: 0 !important;
  position: relative;
}
.dz-login-logo {
  width: 120px;
  margin-bottom: 32px;
}
.dz-login-visual img { display: none !important; }
.dz-login-quote {
  font-size: 1.13rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(120,45,212,0.10);
}
.dz-login-quote-author {
  font-size: 0.98rem;
  color: #ede9fe;
  font-weight: 400;
}
.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"] {
  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[type="email"]:focus,
.dz-login-form-box input[type="password"]:focus {
  border: 1.5px solid #A78BFA;
  outline: none;
}
.dz-login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.dz-remember {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.98rem;
  color: #6B7280;
  font-weight: 500;
}
.dz-forgot {
  color: #A78BFA;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 600;
  transition: color 0.2s;
}
.dz-forgot:hover {
  color: #782DD4;
}
.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;
}
@media (max-width: 1000px) {
  .dz-login-container {
    max-width: 98vw;
    height: auto;
    min-height: 0;
  }
  .dz-login-visual, .dz-login-form-wrap {
    min-width: 0;
    max-width: 100vw;
    width: 100vw;
    padding: 32px 10px;
  }
}
@media (max-width: 700px) {
  .dz-login-container {
    flex-direction: column;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    min-height: 0;
  }
  .dz-login-visual {
    order: 1;
    width: 100vw;
    min-width: 0;
    max-width: 100vw;
    border-radius: 0;
    align-items: center;
    padding: 32px 10px 16px 10px;
  }
  .dz-login-form-wrap {
    order: 2;
    width: 100vw;
    min-width: 0;
    max-width: 100vw;
    border-radius: 0;
    padding: 16px 10px 32px 10px;
  }
  .dz-login-form-box {
    max-width: 100vw;
    width: 100%;
    padding: 0;
  }
}
.dz-login-bg-visual {
  background-image: url('../img/login-visual.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 24px 0 0 24px;
  position: relative;
  min-width: 340px;
  max-width: 420px;
  height: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.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;
} 