* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #f1f1f1;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.text-green{
  color: #268E5E;
}

.left-section {
  background-color: #2ba784;
  color: #fff;
  background-image: url('/img/graphic-bg.png');
  background-position: center;
  background-size: cover;
}

.left-section h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.right-section {
  background-color: #fff;
  padding: 40px;
}

.login-box {
  width: 100%;
  max-width: 400px;
}

.logo {
  max-width: 100px;
}

.form-control, .form-select {
  height: 45px;
  border-radius: 5px;
  border: 2px solid #268E5E;
}

.form-control:focus, .form-select:focus {
  color: #268E5E;
  background-color: var(--bs-body-bg);
  border-color: #268E5E;
  outline: 0;
  box-shadow: 0 0 0 .25rem rgba(38, 142, 94, .25);
}

.btn-custom {
  width: 48%;
  height: 45px;
  font-size: 16px;
}

.btn-primary.btn-custom {
  background-color: #d4a44b;
  border-color: #d4a44b;
}

.btn-secondary.btn-custom {
  background-color: #284d37;
  border-color: #284d37;
}

.btn-primary.btn-custom:hover {
  background-color: #c69540;
}

.btn-secondary.btn-custom:hover {
  background-color: #213a2a;
}

/* Customizing for Firefox */
.form-select::-ms-expand {
  display: none;
}

/* Option styling */
.form-select option {
  background-color: #fff;
  color: #333;
}

.leftcontent {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 40px
}

.leftcontent h2 {
  width: 100%;
  position: absolute;
  top: 60px;
  font-size: 40px;
  font-weight: bold;
}