body {
  margin: 0;
  font-family: 'Playfair Display', serif;
  background-color: #000;
  color: #fff;
}

* {
  box-sizing: border-box;
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content-section {
  display: flex;
  flex: 1;
}

/* LEFT SECTION */

.left-section {
  flex: 1;
  background-color: #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
}

.brand {
  color: #c59a3a;
  letter-spacing: 4px;
  font-size: 24px;
  text-align: center;
}

.product-image img {
  width: 100%;
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(197, 154, 58, 0.5));
}

.welcome-text {
  text-align: center;
  max-width: 500px;
}

.welcome-text h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.welcome-text p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
}

/* RIGHT SECTION */

.right-section {
  flex: 1;
  background-color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.form-container {
  width: 100%;
  max-width: 400px;
}

.form-container h2 {
  font-size: 24px;
  margin-bottom: 5px;
}

.subtitle {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 20px;
}

/* FORM */

form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  background: transparent;
  border: 1px solid #333;
  color: #fff;
  font-size: 14px;
}

form input::placeholder {
  color: #777;
}

form input:focus {
  outline: none;
  border-color: #c59a3a;
}

.password-field {
  position: relative;
}

.forgot-link {
  position: absolute;
  right: 10px;
  top: 14px;
  font-size: 12px;
  color: #c59a3a;
  text-decoration: none;
}

form button {
  width: 100%;
  padding: 12px;
  background-color: #c59a3a;
  border: none;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background-color: #e0b84a;
}

/* DIVIDER */

.divider {
  text-align: center;
  margin: 20px 0;
  color: #777;
  font-size: 12px;
}

/* GOOGLE BUTTON */

.google-btn {
  width: 100%;
  padding: 12px;
  background-color: #333;
  color: #fff;
  border: 1px solid #444;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.google-btn:hover {
  background-color: #444;
  border-color: #c59a3a;
}

.google-btn img {
  width: 22px;
  height: 22px;
}

.google-btn span {
  color: #fff;
}

/* SIGNUP */

.signup-text {
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
}

.signup-text a {
  color: #c59a3a;
  text-decoration: none;
}

/* FOOTER */

footer {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
  font-size: 14px;
}

footer a {
  color: #c59a3a;
  text-decoration: none;
}

/* TABLET */

@media (max-width: 992px) {
  .product-image img {
    max-width: 220px;
  }

  .welcome-text h2 {
    font-size: 22px;
  }
}

/* MOBILE */

@media (max-width: 768px) {
  .content-section {
    flex-direction: column;
  }

  .left-section,
  .right-section {
    padding: 30px 20px;
  }

  .brand {
    font-size: 22px;
  }

  .welcome-text h2 {
    font-size: 22px;
  }

  .welcome-text p {
    font-size: 13px;
  }

  .product-image img {
    max-width: 180px;
  }

  .form-container {
    max-width: 100%;
  }
}

/* SMALL MOBILE */

@media (max-width: 480px) {
  .left-section,
  .right-section {
    padding: 20px 15px;
  }

  .brand {
    font-size: 20px;
    letter-spacing: 2px;
  }

  .welcome-text h2 {
    font-size: 20px;
  }

  .welcome-text p {
    font-size: 12px;
  }

  .forgot-link {
    position: static;
    display: block;
    text-align: right;
    margin-top: -8px;
    margin-bottom: 12px;
  }

  form input,
  form button,
  .google-btn {
    font-size: 13px;
    padding: 10px;
  }

  footer {
    gap: 12px;
    font-size: 12px;
  }
}

.blocked-message {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
}