/* Authentication Container Styles */
.auth-container {
  font-family: Barlow, sans-serif;
  min-height: 75vh;
  display: flex;
  justify-content: center;
  margin-bottom: 20px

}

.auth-card {
  max-width: 950px;
  min-height: 600px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  background: #fcfafa;
}

.auth-brand {
  font-size: 2rem;
  color: #2784b4;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  text-align: center;
  display: flex;
}

.auth-subtitle {
  font-size: 1rem;
  color: #6c757d;
  margin-top: 0.5rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Form Styles */
.auth-form {
  padding: 3rem;
  background: #fff;
}

.auth-form-label {
  display: block;
  margin-bottom: 0.5rem;
}

.auth-form-control {
  width: 100%;
  padding: 0.375rem 0.75rem;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  color:#656566
}

.auth-btn-primary {
  background: #2784b4;
  border: none;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  color: white;
}

.auth-link {
  color:#2784b4;
  font-weight: bold;
  text-decoration: none;
}

/* Side Panel Styles */
.auth-side-panel {
  background: #2784b4;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auth-side-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
}

.auth-side-text {
  font-size: 1.25rem;
  opacity: 0.95;
  text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .auth-card {
    min-height: auto;
  }

  .auth-form {
    padding: 2rem;
  }
}
.form-label{
  color: #656566;
}
