
.login-background {
    background-image: url("/static/images/login-background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-page .breadcrumb {
    display: none;
}

/* Center the login boxes */
.login-container {
  display: flex;
  justify-content: center;
  gap: 30px; /* Space between boxes */
  padding: 40px;
}

/* Style for each login box */
.login-box {
  background: #f5f5f5; /* Light gray background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  width: 400px;
}

/* Styling for headings and text */
.login-box h2 {
  margin-bottom: 10px;
}

.login-box p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

/* Input fields */
.login-box input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Buttons */
.google-button, .login-button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

/* Google button styling */
.google-button {
  background-color: #00395a;
  color: white;
}

/* Login button styling */
.login-button {
  background-color: #ccc;
  color: #666;
}

/* Link styling */
.login-box a {
  display: block;
  margin-top: 10px;
  text-align: center;
  color: #00395a;
  text-decoration: none;
}


