body {
  padding-top: 0;
  margin: 0;
  height: 100vh;
  overflow: hidden;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.login-container {
  height: 100vh;
  width: 100%;
  display: flex;
  position: relative;
}

.login-left {
  flex: 1;
  background: linear-gradient(135deg, #2621ca 0%, #e83e8c 100%);
  color: white;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.login-left h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.login-left p {
  font-size: 1.1rem;
  max-width: 80%;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.login-right {
  flex: 1;
  background: #e8ebef;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-form-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 10;
  padding: 2rem;
}

.login-logo {
  text-align: center;
  margin-bottom: 1rem;
  height: 120px;
}

.login-logo img {
  height: 200px;
  margin-bottom: 0.5rem;
  margin-top: -2em;
}

.login-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-control {
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  border: 1px solid #e0e0e0;
}

.form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(111, 66, 193, 0.25);
  border-color: #6f42c1;
}

.btn-login {
  background: linear-gradient(135deg, #6f42c1 0%, #e83e8c 100%);
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-login:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.shape {
  position: absolute;
  opacity: 0.2;
  z-index: 1;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: #e83e8c;
  border-radius: 50%;
  top: -100px;
  left: -100px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: #e83e8c;
  border-radius: 50%;
  bottom: -50px;
  right: 50px;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: #e83e8c;
  border-radius: 50%;
  bottom: 100px;
  left: 80px;
}

@media (max-width: 992px) {
  .login-container {
    flex-direction: column;
  }

  .login-left,
  .login-right {
    flex: none;
  }

  .login-left {
    height: 50vh;
  }

  .login-right {
    height: 50vh;
  }

  .login-form-wrapper {
    width: 90%;
    max-width: 400px;
  }
}
