.home{
  background: linear-gradient(to right, #0eaa23, #82e46a, #ffffff);
  padding: 20px 50px;
  justify-content: center;
  height: 100%;
  min-height: 100vh;
}

.home .logo-area {
  max-width: 200px;
  margin: 0 auto;
  display: flex;
}

.home .logo-area img {
  width: 100%;
  height: auto;
}

.home .app-name {
  width: 100%;
  font-size: 2.5em;
  margin-top: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(1px, 5px, 10px, 0.5);
}

.home .sub-title {
  /* color: #fffdfd; */
  margin-top: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(1px, 5px, 10px, 0.5);
}

.home .login-form-container{
  max-width: 400px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.5);
}

.primary-btn {
  width: 100%;
  background-color: #0eaa23;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  padding: 10px;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  text-decoration: none;
}

.login-form-container .primary-btn:hover {
  background-color: #0c8a1d;
  transition: background-color 0.5s ease;
  box-shadow: 5px 8px 12px rgba(0, 0, 0, 0.3);
}


.login-form-container .control-label {
  font-size: 1.2em;
  text-align: left ;
  font-family: Arial, sans-serif;
}

.home .login-form-container .form-group {
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .home .app-name {
    font-size: 1.5em;
  }
}