body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #7b0000, #ff4d6d);
  font-family: 'Segoe UI', sans-serif;
}

.form-container {
  width: 100%;
  max-width: 900px;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.form-left {
  flex: 1;
  background: linear-gradient(135deg, #c2185b, #ff8fab);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  text-align: center;
}

.form-right {
  flex: 1;
  background: white;
  padding: 40px;
}

.form-control {
  border-radius: 10px;
  padding: 10px;
}

.form-control:focus {
  border-color: #c2185b;
  box-shadow: 0 0 5px rgba(194,24,91,0.5);
}

.btn-custom {
  background: linear-gradient(135deg, #c2185b, #ff4d6d);
  border: none;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  transition: 0.3s;
}

.btn-custom:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

@media(max-width:768px){
  .form-container{
    flex-direction: column;
  }
}
