    .login-container {
      max-width: 1000px;
      margin: 40px auto;
      display: flex;
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 6px 32px 0 rgba(17,17,17,0.10);
      overflow: hidden;
      min-height: 540px;
    }
    .left-code {
      width: 50%;
      background: #23272e;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: stretch;
      padding: 32px 18px 32px 22px;
      min-height: 420px;
      box-sizing: border-box;
      border-right: 1.5px solid #19202a;
      overflow: auto;
    }
    .code-block {
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 14px 0 #00000025;
      margin-bottom: 0;
    }
    .code-header {
      background: #15181c;
      color: #90caf9;
      font-size: 0.97rem;
      padding: 8px 16px;
      font-family: 'Fira Mono', 'Consolas', monospace;
      border-bottom: 1px solid #23272e;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .code-header .dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      display: inline-block;
    }
    .dot.red { background: #f65a5b; }
    .dot.yellow { background: #f6c65a; }
    .dot.green { background: #5af65e; }
    pre {
      margin: 0;
      padding: 14px 16px;
      background: #23272e;
      color: #eee;
      font-size: 1em;
      overflow-x: auto;
      min-height: 180px;
      max-height: 250px;
      transition: height 0.3s;
    }
    .prism-code {
      background: none !important;
      font-family: 'Fira Mono', 'Consolas', 'Menlo', monospace;
      width: 100%;
      height: 100%;
    }
    .brand {
      font-size: 1.14rem;
      letter-spacing: 1px;
      color: #fff;
      margin-bottom: 10px;
      font-weight: 700;
      text-align: left;
      padding-left: 2px;
    }
    .brand span {
      color: #10c048;
    }
    /* Login side styles */
    .right-login {
      width: 50%;
      background: #ecfaf4;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 48px 32px;
      min-width: 320px;
    }
    .login-box {
      width: 100%;
      max-width: 360px;
      background: none;
    }
	
	.verify-box {
      width: 100%;
      max-width: 360px;
      background: none;
    }
	
    .login-box h2 {
      margin-bottom: 18px;
      font-size: 1.3rem;
      font-weight: 700;
      color: #212529;
    }
    .login-box label {
      font-size: 1rem;
      font-weight: 500;
      color: #555;
    }
	
	.verify-box h2 {
      margin-bottom: 18px;
      font-size: 1.3rem;
      font-weight: 700;
      color: #212529;
    }
    .verify-box label {
      font-size: 1rem;
      font-weight: 500;
      color: #555;
    }
	
	
    .login-box input[type="text"],
    .login-box input[type="password"] {
      width: 100%;
      padding: 13px 15px;
      margin: 9px 0 19px;
      border: 1.5px solid #e1e7ea;
      border-radius: 8px;
      font-size: 1rem;
      background: #fff;
      outline: none;
      transition: border-color .2s;
    }
    .login-box input[type="text"]:focus,
    .login-box input[type="password"]:focus {
      border-color: #10c048;
    }
    .login-options {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin: -10px 0 15px;
    }
    .login-options label {
      display: flex;
      align-items: center;
      font-size: 0.98rem;
      color: #1c1c1c;
    }
    .login-options input[type="checkbox"] {
      margin-right: 7px;
      accent-color: #10c048;
    }
    .login-options a {
      color: #0894e7;
      text-decoration: none;
      font-size: 0.98rem;
    }
    .login-options a:hover {
      text-decoration: underline;
    }
    .login-box button {
      width: 100%;
      padding: 15px;
      background: #10c048;
      color: #fff;
      border: none;
      border-radius: 7px;
      font-size: 1.15rem;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 2px 6px 0 #15be4f1a;
      margin: 10px 0 8px;
      transition: background 0.18s;
    }
    .login-box button:hover {
      background: #0da441;
    }
	
	.verify-box button {
      width: 100%;
      padding: 15px;
      background: #10c048;
      color: #fff;
      border: none;
      border-radius: 7px;
      font-size: 1.15rem;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 2px 6px 0 #15be4f1a;
      margin: 10px 0 8px;
      transition: background 0.18s;
    }
    .verify-box button:hover {
      background: #0da441;
    }
	
    .register-link {
      margin-top: 10px;
      text-align: left;
      font-size: 1rem;
      color: #333;
    }
    .register-link a {
      color: #0894e7;
      text-decoration: none;
      margin-left: 5px;
    }
    .register-link a:hover {
      text-decoration: underline;
    }
    .password-field {
      position: relative;
    }
    .toggle-password {
      position: absolute;
      top: 50%;
      right: 13px;
      transform: translateY(-50%);
      cursor: pointer;
      color: #bdbdbd;
      font-size: 1.13rem;
    }
    /* Responsive Design */
    @media (max-width: 900px) {
      .login-container {
        flex-direction: column;
        max-width: 98vw;
        min-height: 0;
      }
      .left-code, .right-login {
        width: 100%;
        min-height: 180px;
        height: auto;
      }
      .left-code {
        border-right: none;
        border-bottom: 1.5px solid #19202a;
        padding: 18px 6vw 8px 6vw;
      }
      .right-login {
        padding: 30px 7vw 24px;
        min-width: 0;
      }
      .brand {
        font-size: 1rem;
        margin-bottom: 8px;
      }
      pre {
        min-height: 120px;
        font-size: 0.92em;
      }
       
      .login-box h2 {
        font-size: 1.05rem;
      }
	  
	  .verify-box h2 {
        font-size: 1.05rem;
      }
	  
      .login-box label,
	  .verify-box label,
      .login-options label,
      .login-options a {
        font-size: 0.95rem;
      }
      .login-box button {
        font-size: 1rem;
      }
	  
	   .verify-box button {
        font-size: 1rem;
      }
	  
    }
    @media (max-width: 540px) {
      .login-container {
        margin: 0;
        border-radius: 0;
        box-shadow: none;
      }
      .left-code {
        min-height: 2px;
        padding: 12px 2vw 6px 2vw;
      }
      pre {
        min-height: 74px;
        font-size: 0.86em;
      }
      .right-login {
        padding: 16px 0vw 10px;
      }
      .login-box button {
        font-size: 0.97rem;
        padding: 12px;
      }
	  
	  .verify-box button {
        font-size: 0.97rem;
        padding: 12px;
      }
	  
      .register-link {
        font-size: 0.9rem;
      }
    }
	
	.register-box {
  width: 100%;
  max-width: 400px;
  margin: auto;
  background: none;
}
.register-box label {
  font-size: 1rem;
  font-weight: 500;
  color: #555;
  display: block;
  margin-bottom: 5px;
}
.register-box input[type="text"], 
.register-box input[type="email"], 
.register-box input[type="password"] {
  width: 100%;
  padding: 13px 15px;
  margin-bottom: 14px;
  border: 1.5px solid #e1e7ea;
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
  outline: none;
  transition: border-color .2s;
}
.register-box input[type="text"]:focus,
.register-box input[type="email"]:focus,
.register-box input[type="password"]:focus {
  border-color: #10c048;
}
.row {
  display: flex;
  gap: 14px;
}
.col {
  flex: 1;
  min-width: 0;
}
.password-field {
  position: relative;
}
.toggle-password {
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #bdbdbd;
  font-size: 1.1rem;
}
.agree-row {
  display: flex;
  align-items: center;
  margin-top: 2px;
  margin-bottom: 6px;
  font-size: .99rem;
}
.agree-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #111;
}
.register-box button {
  padding: 15px 0;
  background: #10c048;
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 1.11rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 6px 0 #15be4f1a;
  transition: background 0.18s;
  margin-bottom: 5px;
}
.register-box button:hover {
  background: #0da441;
}
@media (max-width: 600px) {
  .register-box {
    max-width: 100%;
    padding: 0 1vw;
  }
  .row {
    flex-direction: column;
    gap: 0;
  }
}

.user-data-box {
  width: 100%;
  max-width: 400px;
  margin: auto;
  background: none;
}
.user-data-box label {
  font-size: 1rem;
  font-weight: 500;
  color: #555;
  display: block;
  margin-bottom: 5px;
}
.user-data-box input[type="text"], 
.user-data-box input[type="email"], 
.user-data-box input[type="tel"], 
.user-data-box select {
  width: 100%;
  padding: 13px 15px;
  margin-bottom: 14px;
  border: 1.5px solid #e1e7ea;
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
  outline: none;
  transition: border-color .2s;
}
.user-data-box select {
  color: #555;
}
.user-data-box input[type="text"]:focus,
.user-data-box input[type="email"]:focus,
.user-data-box input[type="tel"]:focus,
.user-data-box select:focus {
  border-color: #10c048;
}
.row {
  display: flex;
  gap: 14px;
}
.col {
  flex: 1;
  min-width: 0;
}
.user-data-box button {
  padding: 15px 0;
  background: #10c048;
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 1.11rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 6px 0 #15be4f1a;
  transition: background 0.18s;
  margin-bottom: 5px;
}
.user-data-box button:hover {
  background: #0da441;
}
@media (max-width: 600px) {
  .user-data-box {
    max-width: 100%;
    padding: 0 1vw;
  }
  .row {
    flex-direction: column;
    gap: 0;
  }
}