* {
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  margin: 0;
  height: 100vh;
  background: linear-gradient(135deg, #c77d90, #5c4b7d);
}

.container {
  display: flex;
  height: 100%;
}

/* LEFT SECTION */
.left {
  flex: 1;
  padding: 80px;
  color: #fff;
}

.left h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.left p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 480px;
}

.btn-login {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff6a6a, #ffb86c);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-login:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 106, 106, 0.35);
}

.btn-login:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


/* RIGHT SECTION */
.right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  background: #fff;
  width: 420px;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.card h2 {
  margin: 0;
  font-size: 26px;
}

.sub {
  color: #666;
  margin-bottom: 25px;
}

label {
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
  margin-top: 16px;
}

input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

input:focus {
  outline: none;
  border-color: #6a5acd;
}

.btn-success {
  margin-top: 25px;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #2ecc71;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

.btn-outline {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}

.divider {
  text-align: center;
  margin: 20px 0;
  color: #999;
}

.switch {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
}

.switch a {
  color: #6a5acd;
  text-decoration: none;
  font-weight: 600;
}

.terms {
  font-size: 12px;
  margin-top: 15px;
  text-align: center;
}

.terms a {
  color: #6a5acd;
  text-decoration: none;
}
