* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --primary: #ee4d2d;
  --secondary: #ff7337;
  --dark: #111827;
  --light: #f5f5f5;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

body {
  min-height: 100vh;
  background: linear-gradient(120deg, #fff7f5, #ffffff);
}

.login-container {
  min-height: 100vh;

  display: flex;
}

.login-left {
  flex: 1;

  background: linear-gradient(180deg, var(--primary), var(--secondary));

  color: white;

  padding: 60px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo {
  font-size: 40px;
  font-weight: 800;

  margin-bottom: 30px;
}

.login-left h1 {
  font-size: 55px;
  line-height: 1.1;

  margin-bottom: 20px;
}

.login-left p {
  line-height: 1.8;
  margin-bottom: 40px;
}

.login-left img {
  width: 100%;
  max-width: 500px;

  border-radius: 30px;

  box-shadow: var(--shadow);
}

.login-right {
  flex: 1;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 40px;
}

.login-box {
  width: 100%;
  max-width: 450px;

  background: white;

  padding: 40px;

  border-radius: 30px;

  box-shadow: var(--shadow);
}

.login-box h2 {
  font-size: 35px;

  margin-bottom: 30px;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;

  margin-bottom: 10px;

  font-weight: 500;
}

.input-group input {
  width: 100%;

  padding: 16px;

  border-radius: 14px;
  border: 2px solid #eee;

  outline: none;

  transition: 0.3s;
}

.input-group input:focus {
  border-color: var(--primary);
}

.login-btn {
  width: 100%;

  padding: 16px;

  border: none;
  border-radius: 14px;

  background: var(--primary);
  color: white;

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;
}

.login-btn:hover {
  transform: translateY(-5px);
}

.divider {
  text-align: center;

  margin: 25px 0;

  color: #888;
}

.google-btn {
  width: 100%;

  padding: 16px;

  border: none;
  border-radius: 14px;

  background: #111827;
  color: white;

  cursor: pointer;
}

.signup-text {
  text-align: center;

  margin-top: 25px;
}

.signup-text a {
  color: var(--primary);
  text-decoration: none;
}

.back-home {
  display: inline-block;

  margin-top: 25px;

  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 900px) {
  .login-container {
    flex-direction: column;
  }

  .login-left {
    text-align: center;
    align-items: center;
  }

  .login-left h1 {
    font-size: 40px;
  }
}
