* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  min-height: 100vh;
  background: #f7faf9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-wrapper {
  width: 100%;
  padding: 20px;
}

.auth-container {
  width: 760px;
  min-height: 470px;
  margin: auto;
  background: #ffffff;
  border: 1px solid #d9e2df;
  border-radius: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

/* LEFT SIDE */
.auth-left {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(160deg, #5bb5ad 0%, #12352f 60%, #091714 100%);
  color: white;
  padding: 48px 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.auth-left h2 {
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 5px;
}

.subtitle {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 36px;
}

.desc {
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

.dashboard-img {
  width: 82%;
  max-width: 260px;
  position: absolute;
  left: 34px;
  bottom: 28px;
  border-radius: 12px;
  transform: rotate(-8deg);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

/* RIGHT SIDE */
.auth-right {
  padding: 28px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.form-logo {
  width: 52px;
  height: auto;
  margin-bottom: 14px;
}

.auth-right h1 {
  font-size: 26px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px;
}

.form-text {
  text-align: center;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 28px;
}

form {
  width: 100%;
}

.form-group {
  width: 100%;
  margin-bottom: 14px;
  position: relative;
}

.form-group input {
  width: 100%;
  height: 42px;
  border: 1px solid #d6dce0;
  border-radius: 7px;
  padding: 0 14px;
  font-size: 13px;
  outline: none;
  color: #111827;
  background: #fff;
}

.form-group input:focus {
  border-color: #11b87b;
  box-shadow: 0 0 0 3px rgba(17, 184, 123, 0.12);
}

.password-box input {
  padding-right: 38px;
}

.eye {
  position: absolute;
  right: 12px;
  top: 10px;
  font-size: 14px;
  opacity: 0.45;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 8px 0 22px;
  font-size: 12px;
}

.form-options label {
  color: #374151;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-options input {
  accent-color: #16c784;
}

.form-options a,
.signup-text a {
  color: #16c784;
  font-weight: 700;
  text-decoration: none;
}

button {
  width: 100%;
  height: 44px;
  background: #16c784;
  border: none;
  border-radius: 7px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s;
}

button:hover {
  background: #10ad71;
}

.signup-text {
  text-align: center;
  margin-top: 22px;
  font-size: 13px;
  color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .auth-container {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .auth-left {
    min-height: 360px;
  }

  .auth-right {
    padding: 34px 20px;
  }
}