/* Custom styling */
body {
  font-family: Plus Jakarta Sans,sans-serif;
  font-size: 1rem;
  font-weight: 400;
  margin: 40px;
  background-color: #000000;
  color: #fff;
}
.form-container {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px; /* Adding padding to the container */
  border: 1px solid #ffffff1f;
  border-radius: 8px;
}
.form-container h1 {
  text-align: center;
}
.form-container form {
  padding: 16px;
  margin-bottom: 16px;
}
.form-container label {
  display: block;
  margin-bottom: 8px;
}
.form-container input {
  width: calc(100% - 32px); /* Ensuring input fields are padded */
  padding: 8px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-left: 8px; /* Adding margin to the left */
}
.form-container button {
  width: calc(100% - 32px); /* Ensuring buttons are padded */
  padding: 10px;
  background-color: #5381f9;
  color: white;
  border: 1px solid #5381f9;
  border-radius: 4rem;
  cursor: pointer;
  margin-left: 8px;
}
.form-container button:hover {
  background-color: #0056b3;
}
.form-container #message {
  text-align: center;
  margin-bottom: 16px;
}
.hidden {
  display: none;
}
a {
  color: #fff;
  font-weight: 600;
}

.g-nav-brand-logo {
    height: 1.64rem;
    min-height: 1.64rem;
    max-width: 100%;
    display: inline-block;
    border: 0;
}

/* Spinner styling */
.spinner {
    display: none; /* Initially hidden */
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top: 5px solid #007BFF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1000; /* Ensure it's above other elements */
}

/* Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
