/* Reset */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Body layout */
body {
  display: flex;
  min-height: 100vh;
  background: linear-gradient(to bottom, #0F123B, #000);
  color: #fff;
}

/* Left image section */
.left-container {
  flex: 1;
  background-image: url('https://images.unsplash.com/photo-1686706763783-1378f598d8c3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1287&q=80');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}

/* Right form section */
.right-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(to bottom, rgba(15,18,59,0.9), rgba(0,0,0,0.9));
}

/* Form box */
.right-container__box {
  max-width: 400px;
  width: 100%;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background-color: rgba(0,0,0,0.7);
  color: #fff;
}

/* Heading and paragraph */
.right-container__h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}

.right-container__p {
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
  font-size: 14px;
}

/* Labels and inputs */
.right-container__label {
  display: block;
  font-weight: 500;
  margin-top: 1rem;
  font-size: 14px;
}

.right-container__input {
  width: 100%;
  padding: 12px 16px;
  margin-top: 6px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  font-size: 14px;
  color: #fff;
  background-color: rgba(255,255,255,0.1);
  transition: border 0.3s, box-shadow 0.3s;
}

.right-container__input::placeholder {
  color: rgba(255,255,255,0.6);
}

.right-container__input:focus {
  outline: none;
  border-color: #30A2FF;
  box-shadow: 0 0 5px rgba(48,162,255,0.5);
}

/* Button */
.btn {
  display: block;
  width: 100%;
  padding: 12px;
  margin-top: 1.5rem;
  background-color: #30A2FF;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn:hover {
  background-color: #1E90FF;
  transform: translateY(-2px);
}

/* Error message */
.error-message {
  color: #FF6B6B;
  margin-bottom: 1rem;
  font-size: 13px;
  text-align: center;
}

/* Bottom text */
.right-container__bottom-text {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.right-container__bottom-text strong {
  color: #fff;
  cursor: pointer;
}

/* Responsive for mobile */
@media (max-width: 860px) {
  body {
    flex-direction: column;
  }

  .left-container {
    display: none;
  }

  .right-container {
    flex: 1 0 auto;
    padding: 3rem 1.5rem;
  }

  .right-container__box {
    width: 100%;
    padding: 2rem;
  }
}
