body {
  font-family: 'Open Sans', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f4f4f4;
}

.login-container {
  background-color: white;
  padding: 40px;
  width: 350px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.brand-logo-light {
  width: 90px; /* Width as defined */
  height: 39px; /* Height as defined */
  border-radius: 12px; /* Gives rounded corners for the icon effect */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Adds a shadow for depth */
  /* Additional styling if needed */
}


.login-container h1 {
  margin-bottom: 20px;
  color: #333;
  font-weight: 600;
}

input[type="email"], input[type="password"] {
  width: calc(100% - 20px);
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

button {
  width: calc(100% - 20px);
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #018FB9;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #f2f2f2;
  color: #757575;
}

.google-login {
  background-color: #ffffff;
  color: #757575;
  border: 1px solid #ddd;
  margin-top: 15px;
  width: 100%;
  padding: 10px 15px; /* Padding for size */
  border-radius: 4px; /* Rounded corners */
  font-family: 'Roboto', sans-serif; /* Google's font, or a similar sans-serif */
  text-align: left; /* Align text to the left */
  display: flex; /* Use flexbox for alignment */
  align-items: center; /* Center items vertically */
  justify-content: center; /* Center items horizontally */
  cursor: pointer; /* Change cursor to pointer */
  transition: background-color 0.2s; /* Smooth transition for hover effect */
}

.google-login:hover {
  background-color: #f2f2f2;
}

.google-login img {
  margin-right: 10px; /* Space between logo and text */
  height: 22px; /* Adjust size of the logo */
}

.google-login span {
  flex-grow: 1; /* Make text take up available space */
  text-align: center; /* Ensure text is centered */
}

.label-login {
  background-color: #ffffff;
  color: #757575;
  margin-top: 15px;
  width: 100%;
  font-family: 'Roboto', sans-serif; /* Google's font, or a similar sans-serif */
  display: flex; /* Use flexbox for alignment */
  justify-content: center; /* Center items horizontally */
  font-size: 14px;
}

.forgot-password, .signup-link {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  color: #0056b3;
  text-decoration: none;
}

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

.light-line {
  height: 2px;
  background-color: lightgray;
  border: none;
  margin-top: 15px;
  margin-bottom: 15px;
}

.loading-popup {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  background-color: rgba(0, 0, 0, 0.5); /* Black with a bit of opacity */
}

.loading-popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fefefe;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}
