* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f7f7f7;
  color: #333;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-wrapper {
  display: flex;
  width: 90%;
  max-width: 1000px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.login-left {
  flex: 1;
  background: linear-gradient(to bottom right, #980303, #ef4066);
    /* background: linear-gradient(to bottom right, #c60167, #ff4e84); */
  color: #fff;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.login-left .brand h1 {
  font-size: 3rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.login-left .brand p {
  font-size: 1.2rem;
  font-weight: 300;
}

.login-right {
  flex: 1;
  padding: 4rem 2.5rem;
}

.login-form h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #111;
}

.login-form .login-sub {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

.login-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 15px;
}

.login-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 6px;
  border: 1px solid #ccc;
  transition: border-color 0.3s ease;
}

.login-form input:focus {
  border-color: #c32b44;
  outline: none;
}

.login-links {
  text-align: right;
  margin-bottom: 20px;
}

.login-links a {
  color: #b70a2d;
  font-size: 14px;
  text-decoration: none;
}

.login-links a:hover {
  text-decoration: underline;
}

.login-btn {
  background-color: #c60122;
  color: #fff;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.login-btn:hover {
  background-color: #dd0606;
}

.register-text {
  margin-top: 20px;
  font-size: 14px;
  text-align: center;
}

.register-text a {
  color: #c60101;
  text-decoration: none;
  font-weight: 500;
}

.register-text a:hover {
  text-decoration: underline;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .login-wrapper {
    flex-direction: column;
  }

  .login-left {
    padding: 2rem 1.5rem;
  }

  .login-right {
    padding: 2rem;
  }
}
