body {
  margin: 0;
  display: flex;
  height: 100vh;
  overflow: hidden;
}
.left-side {
  background: url('../img/index-cover.jpg') no-repeat center center;
  background-size: cover;
  flex: 1;
  position: relative;
}
.right-side {
  flex: 1;
  overflow-y: auto;
  background: rgba(255, 255, 255);
  padding: 20px;
}
.container {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 10px;
}
.card-header {
  background: rgba(0, 123, 255, 0.9) !important;
}
.form-control, .form-select {
  border-radius: 5px !important;
  box-shadow: none !important;
}
.btn-outline-primary {
  border-color: #6a11cb;
  color: #6a11cb;
  transition: color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.btn-outline-primary:hover {
  background-color: #6a11cb;
  color: #fff;
}
.btn-primary {
  background-color: #2575fc;
  border-color: #2575fc;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.btn-primary:hover {
  background-color: #1e63e0;
  border-color: #1a54c1;
}
.bg-success {
  background-color: #6a11cb !important;
}
.text-white {
  color: #fff !important;
}
.application-form-title {
  color: #007bff; /* Bootstrap primary color */
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  background: -webkit-linear-gradient(45deg, #007bff, #6610f2); /* gradient for modern look */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  body {
    flex-direction: column;
  }
  .left-side {
    height: 50vh;
    background-attachment: scroll;
    flex: 0.2;
  }
  .right-side {
    height: 50vh;
  }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
body {
  overflow: hidden;
  background: linear-gradient(135deg, #c18b00 0%, #c18b00 100%);
  font-family: 'Livviv', sans-serif;
}
.login-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1s ease-in-out;
}
.login-image {
  padding-left: 0;
}
.login-image img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.form-section {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 30px;
  color: #333;
}
.form-section h1 {
  color: #6a11cb;
}
.form-select {
  border-radius: 0.375rem;
  border: 1px solid #ced4da;
  padding: 0.375rem 0.75rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-select:focus {
  border-color: #6a11cb;
  box-shadow: 0 0 0 0.2rem rgba(106, 17, 203, 0.25);
}
.btn-outline-primary {
  border-color: #6a11cb;
  color: #6a11cb;
  transition: color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.btn-outline-primary:hover {
  background-color: #6a11cb;
  color: #fff;
}
.btn-primary {
  background-color: #2575fc;
  border-color: #2575fc;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.btn-primary:hover {
  background-color: #1e63e0;
  border-color: #1a54c1;
}
.bg-success {
  background-color: #6a11cb !important;
}
.text-white {
  color: #fff !important;
}
@media (max-width: 767px) {
  body {
    background: url('../img/index-cover.jpg') no-repeat center center fixed;
    background-size: cover;
  }
  .login-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  .login-image {
    display: none;
  }
  .form-section {
    margin-top: 20px;
    padding: 20px;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
  }
}