:root {
  --primary-color: #75b16c;
  --primary-light: #a7d3a0;
  --primary-dark: #5a8f53;
  --accent-color: #f8f9fa;
}

body {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-container {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  max-width: 900px;
  height: auto;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.login-row {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  min-height: 100%;
}

/* Branding Panel */
.brand-info {
  background-color: var(--primary-color);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 800'%3E%3Ccircle fill='%2375B16C' cx='400' cy='400' r='600'/%3E%3Ccircle fill='%237db973' cx='400' cy='400' r='500'/%3E%3Ccircle fill='%2384c17a' cx='400' cy='400' r='400'/%3E%3Ccircle fill='%238cc981' cx='400' cy='400' r='300'/%3E%3Ccircle fill='%2394d188' cx='400' cy='400' r='200'/%3E%3Ccircle fill='%239CD98F' cx='400' cy='400' r='100'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  height: 100%;
}

.brand-logo {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  background-color: rgba(255, 255, 255, 0.2);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 20px;
}

.features {
  margin-top: 30px;
}

.feature-item {
  margin-bottom: 20px;
}

/* Form Section */
.login-form-container {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.login-title {
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 30px;
}

.login-subtitle {
  color: #6c757d;
  margin-bottom: 30px;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(117, 177, 108, 0.4);
}

.btn-outline-primary {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  background-color: transparent;
  padding: 6px 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-dark);
  box-shadow: 0 5px 15px rgba(117, 177, 108, 0.4);
  transform: translateY(-2px);
}

/* Form Input Focus */
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(117, 177, 108, 0.25);
}

/* Responsive */
@media (max-width: 767.98px) {
  .brand-info {
    padding: 30px;
    height: auto;
  }

  .login-form-container {
    padding: 30px;
  }
}


