.login-page {
  min-height: 100vh;
  display: flex;
  /*flex-direction: column;*/
  flex-direction: row;
  align-items: center;
  background-color: #fefefe;
  font-family: "Inter", sans-serif;
}

.login-header {
  /*width: 100%;*/
  width: 50%;
  /*height: 230px;*/
  height: 100vh;
  /*background-image: url('/images/banner-bg.png');*/
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /*background-color: var(--primary-color);*/
  background-color: #f5f7f9;
}
.header-content {
  text-align: center;
  color: #152128;
  padding: 10px 20px;
  /*background: rgba(0, 0, 0, 0.5);*/
  border-radius: 8px;  
}
.logo-container {
  text-align: center;
  margin-bottom: 30px;
}
.login-logo {
  max-width: 200px;
  height: auto;
}
.login-header h1 {
  font-size: 32px;
  margin-bottom: 10px;
}
.login-header p {
  font-size: 18px;
}
.login-container {
  /*background: white;*/
  padding: 10px 40px;
  /*border-radius: 8px;*/
  /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.login-form .form-group {
  margin-bottom: 24px;
}

.login-form h2 {
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
}

.input-outer {
  position: relative;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  background: #f5f7f9 !important;
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}

.forgot-password {
  text-align: right;
  margin-bottom: 24px;
}

.forgot-password a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 14px;
}

.login-btn {
  width: 100%;
  padding: 12px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.login-btn:hover {
  background-color: #0056b3;
}

.alert {
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
/*css for forgot password page*/
.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.help-text {
  font-size: 12px;
  color: #666;
  margin-top: 8px;
}
.back-to-login a {
  color: var(--primary-color);
  text-decoration: none;
}
.back-to-login a:hover {
  text-decoration: underline;
}
.login-btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #ccc;
}

.login-btn.disabled:hover {
    background-color: #ccc;
}