/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #ffffff;
}

/* ================= WRAPPER ================= */
.login-wrapper {
  display: flex;
  min-height: 100vh;
}

/* ================= LEFT SIDE ================= */
.login-left {
  flex: 1;
  background: linear-gradient(135deg, #ffffff, #e31e24);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  color: white;
}

.left-content {
  max-width: 450px;
}

.left-content img {
  width: 180px;
  margin-bottom: 30px;
}

.left-content h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
}

/* ================= RIGHT SIDE ================= */
.login-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.login-card {
  background: white;
  width: 400px;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.login-card h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.login-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.login-card input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  margin-bottom: 12px;
}

.login-card input:focus {
  outline: none;
  border-color: #2f5faa;
}

.forgot {
  font-size: 13px;
  color: #2f5faa;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 15px;
}

.login-card button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #e31e24;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.login-card button:hover {
  background: #a50000;
}

.register {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.register a {
  color: #2f5faa;
  text-decoration: none;
  font-weight: 500;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .login-wrapper {
    flex-direction: column;
  }

  .login-left {
    display: none;
  }

  .login-card {
    width: 100%;
    max-width: 400px;
  }
}
