/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f8f9fa;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Login Container */
.login-container {
  max-width: 400px;
  margin: 50px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Login Header */
.login-header {
  text-align: center;
  margin-bottom: 20px;
}

.login-header img {
  max-width: 100px; /* Adjust this value as needed */
  height: auto; /* Maintain aspect ratio */
  margin-bottom: 10px;
}

.login-header h1 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.login-header p {
  font-size: 14px;
  color: #666;
}

/* Form Styling */
#voucher-login-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#voucher-login-form label {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

#voucher-login-form input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
}

#voucher-login-form input:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

#voucher-login-form button {
  padding: 10px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#voucher-login-form button:hover {
  background-color: #0056b3;
}

/* Error Message */
#error-message {
  font-size: 14px;
  color: #dc3545;
  text-align: center;
  margin-top: 10px;
}
