/* Styles specific to the login page */
.login-page {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
}

.login-page .footer {
  color: #fff !important;
}

.login-page .login-container {
  display: flex;
  width: 80%;
  max-width: 900px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.login-page .login-left {
  flex: 1;
  background: #6a11cb;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-page .login-left .login-illustration {
  max-width: 100%;
  height: auto;
}

.login-page .login-right {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-page .login-right h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #6a11cb;
}

.login-page .login-right h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #333;
}

.login-page .input-group {
  margin-bottom: 15px;
}

.login-page .input-group-text {
  font-weight: bold;
  color: #333;
}

.login-page .form-control {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
}

.login-page .form-check {
  margin-bottom: 20px;
  text-align: right;
}

.login-page .forgot-password {
  color: #6a11cb;
  text-decoration: none;
}

.login-page .btn-primary {
  background-color: #6a11cb;
  border: none;
  padding: 10px;
  width: 100%;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
}

.login-page .btn-primary:hover {
  background-color: #2575fc;
}

.login-page .create-account {
  display: block;
  margin-top: 10px;
  text-align: center;
  color: #6a11cb;
  text-decoration: none;
}