.login-page {
  min-height: 100vh;
 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
#authentication #wrapper{
   background-image: url('../img/login-background.jpg');
   background-repeat: no-repeat;
   background-size: cover;
   padding: 0;
   margin: 0;
}
.login-container {
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  max-width: 1200px;
  width: 100%;
  padding: 40px;
}

.login-header {
  text-align: center;
  margin-bottom: 40px;
}

.login-header .logo {
  background-color: #4a5568;
  color: white;
  padding: 12px 24px;
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  letter-spacing: 2px;
  border-radius: 4px;
}

.welcome-text {
  color: #666;
  font-size: 16px;
  margin: 0;
}

.login-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.login-form-section {
  background-color: #f8fafc;
  padding: 30px;
  border-radius: 6px;
}

.login-form-section h3 {
  color: #2d3748;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.login-subtitle {
  color: #666;
  font-size: 14px;
  margin-bottom: 25px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  margin-bottom: 5px;
  color: #2d3748;
  font-weight: 500;
  font-size: 14px;
  text-align: left; !important
}

.form-field input {
  width: 100%;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  font-size: 14px;
  background-color: white;
  box-sizing: border-box;
}

.form-field input:focus {
  outline: none;
  border-color: #4299e1;
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.form-actions {
  margin-top: 25px;
}

.btn-login {
  background-color: #4299e1;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  margin-bottom: 15px;
  font-size: 14px;
}

.btn-login:hover {
  background-color: #3182ce;
}

.forgot-password {
  text-align: center;
  margin: 15px 0;
}

.forgot-password a {
  color: #4299e1;
  text-decoration: none;
  font-size: 14px;
}

.forgot-password a:hover {
  text-decoration: underline;
}

.btn-register {
  background-color: transparent;
  color: #4299e1;
  border: 1px solid #4299e1;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  font-size: 14px;
}

.btn-register:hover {
  background-color: #4299e1;
  color: white;
}

.login-info-section {
  padding: 20px 0;
}

.login-info-section h4 {
  color: #2d3748;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.login-info-section h5 {
  color: #2d3748;
  font-size: 14px;
  font-weight: 600;
  margin: 25px 0 10px 0;
}

.login-info-section p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Responsive design */
@media (max-width: 768px) {
  .login-page {
    padding: 20px 10px;
  }
  
  .login-container {
    padding: 30px 20px;
  }
  
  .login-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .login-form-section {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .login-container {
    padding: 20px 15px;
  }
  
  .login-header .logo {
    font-size: 20px;
    padding: 10px 20px;
  }
}

/** Registration page **/
