body {
  margin: 0;
  padding: 0;
  background-color: #d3d3d3;
  font-family: 'Helvetica Neue', sans-serif;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-container {
  width: 900px;
  max-width: 100%;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
}

.form-section {
  width: 50%;
  padding: 40px;
}

.form-section h2 {
  font-weight: bold;
  margin-bottom: 25px;
}

.form-section a {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  cursor:pointer;
}

.form-control {
  height: 45px;
  border-radius: 8px;
  font-size: 15px;
}

.btn-login {
  width: 100%;
  height: 45px;
  background-color: #000;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  margin-top: 15px;
}

.login-logo {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
}
.login-logo img {
  max-width: 300px;
  height: auto;
  display: block;
  border-radius: 20px;
}
.login_errors{
	height: 50px;
    margin-top: 10px;
    color: #FF0000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}
label.error{
    font-weight: bold;
    color: #B94A48;
    margin-top: 2px;
}
.login_errors .feedback{
	display: none;
    text-align: center;
    width: 100%;
    background: #ea7e7e;
    border: 1px solid #a71010;
    padding: 5px;
    text-align: center;
    color: #ffffff;
}
.login-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #4a4a4a;
  color: white;
  padding: 15px;
  width: 100%;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}
.login-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.btn-spinner {
  width: 18px;
  height: 18px;
  border: 3px solid white;
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.hidden {
  display: none;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 10px;
  background-color: #f8f9fa;
  border-top: 1px solid #dee2e6;
  font-size: 12px;
}
@media (max-width: 768px) {
  .login-container {
    flex-direction: column;
    width: 95%;
  }

  .form-section, .image-section {
    width: 100%;
    padding: 30px;
  }

  .image-section {
    height: 200px;
  }
}