.login-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-wrapper {
  display: flex;
  width: 100%;
  max-width: 1200px;
  align-items: center;
  justify-content: center;
}

.login-box {
  width: 100%;
  max-width: 500px;
  padding: 40px 30px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.login-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.form-label {
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.form-check-label {
    font-size: 1rem;
    font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.2s;
}

.form-control:focus {
  border-color: #000;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.btn-black {
  background-color: #000;
  color: white;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.btn-black:hover {
  background-color: #333;
}

.forgot {
  color: #4a90e2;
  text-decoration: none;
  font-size: 14px;
  margin-top: 15px;
  display: block;
  text-align: center;
}

.forgot:hover {
  text-decoration: underline;
}

.note {
  font-size: 14px;
  color: #4a4a4a;
  margin-top: 20px;
  line-height: 1.4;
}

.signup {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #4a4a4a;
}

.signup a {
  color: #4a90e2;
  text-decoration: none;
  font-weight: 500;
}

.signup a:hover {
  text-decoration: underline;
}

.policy {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  color: #4a4a4a;
  line-height: 1.4;
}

.policy a {
  color: #4a90e2;
  text-decoration: none;
}

.policy a:hover {
  text-decoration: underline;
}

.illustration {
  display: none;
}

@media (min-width: 992px) {
  .login-wrapper {
    justify-content: space-around;
  }

  .login-box {
    max-width: 500px;
    margin-right: 20px;
  }

  .illustration {
    display: block;
    max-width: 500px;
  }

  .illustration img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
}
