/* CSS */
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  font-family: 'Poppins', sans-serif;
}

.container-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #00a18c;
}

.split-container {
  display: flex;
  width: 80%;
  max-width: 1000px;
  height: 600px;
  background: #c9c9c9;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
}

.left-side {
  flex: 1;
  background: #f8f9fa;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.login-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.right-side {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background: white;
}

.form-wrapper {
  width: 100%;
  max-width: 350px;
}

.form-title {
  text-align: center;
  margin-bottom: 40px;
  color: #2c3e50;
  font-weight: 600;
}

.form-group {
  margin-bottom: 25px;
}

.form-control {
  height: 50px;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  padding: 0 20px;
  font-size: 14px;
}

.form-control:focus {
  border-color: #56baed;
  box-shadow: none;
}

.btn-login {
  width: 100%;
  height: 50px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  background-color: #bbd034;
  border: none;
  transition: all 0.3s ease;
}

.btn-login:hover {
  background-color: #00a98f;
}

.custom-alert {
  margin-top: 20px;
  border-radius: 8px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .split-container {
      flex-direction: column;
      height: auto;
      width: 90%;
  }

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

  .left-side {
      height: 200px;
  }

  .right-side {
      height: auto;
  }
}