/* Top left logo */
.login-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}

.login-icon img {
  height: 90px;
}

/* Layout */
.wrapper {
  display: flex;
  height: 100vh;
  width: 100%;
}

/* Left illustration */
.left-side {
  width: 55%;
  background: #a7d7dd;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.left-side img {
  max-width: 90%;
  height: auto;
}

/* Right panel */
.right-side {
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-container {
  width: 100%;
  max-width: 420px;
  text-align: center;
  padding: 20px;
}

.logo {
  width: 300px;
  margin-bottom: 20px;
}

.title {
  font-size: 18px;
  color: #555;
  margin-bottom: 6px;
}

.subtitle {
  font-size: 26px;
  font-weight: 500;
  color: rgb(124, 124, 126);
  margin-bottom: 20px;
}

.form-container p {
  color: #666;
  font-size: 14px;
  margin-bottom: 25px;
}

/* Input group */
.domain-group {
  display: flex;
  align-items: center;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.domain-group input {
  flex: 1;
  padding: 12px 14px;
  border: none;
  outline: none;
  font-size: 14px;
}

.suffix-box {
  background: #f5f6f8;
  padding: 12px 14px;
  font-size: 14px;
  color: #555;
  border-left: 1px solid #dcdcdc;
  white-space: nowrap;
}

/* Button */
button {
  width: 100%;
  background: #4f5d7e;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease;
}

button:hover {
  background: #3f4c6b;
}

/* Responsive */
@media (max-width: 900px) {
  .wrapper {
    flex-direction: column;
  }

  .left-side {
    width: 100%;
    height: 45%;
  }

  .right-side {
    width: 100%;
    height: 55%;
  }
}

button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Disabled state */
button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
