body {
  background: #120027;
  font-family: 'Rubik', sans-serif;
}

.logo-image {
  height: 75px;
  width: auto;
}

.auth-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background: transparent;
  border-radius: 15px;
}

.auth-header {
  text-align: center;
  margin-bottom: 30px;
}

.auth-title {
  color: aliceblue;
  font-size: 5em;
  margin-bottom: -10px;
}

.auth-subtitle {
  color: aliceblue;
  margin-bottom: 0;
  font-size: 1.75em;
  margin-top: -10px;
}

.auth-form {
  margin-bottom: 20px;
  justify-content: center;
  text-align: center;
}

.auth-input {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: transparent;
  border-radius: 15px;
  font-size: 18px;
  color: #333;
  transition: all 0.3s ease;
  box-sizing: border-box;
  background: aliceblue;
  font-family: 'Rubik', sans-serif;
}

.auth-input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.auth-btn {
  padding: 10px 35px;
  justify-content: center;
  text-align: center;
  background: linear-gradient(to right, #004aad, #cb6ce6);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 15px;
  transform: scale(1.2);
  margin-top: 15px;
}

.auth-btn:hover {
  transform: translateY(-2px) scale(1.3);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.auth-btn:focus {
  outline: none;
}

.auth-btn:focus {
  outline: none;
}

.auth-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.auth-links {
  text-align: center;
  margin-top: 20px;
  color: #d9d9d9;
  font-size: 20px;
  font-weight: 500;
}

.auth-link {
  text-decoration: underline;
  transition: all 0.2s ease;
  color: #d9d9d9;
  display: inline-block; /* Makes it so that the link can scale */
}

.auth-link:hover {
  text-decoration: underline;
  transform: scale(1.05);
  cursor: pointer;
}

.auth-link:focus {
  outline: none;
}

.legal {
  text-align: center;
  margin-top: 20px;
  color: #b7b7b7;
  font-size: 16px;
  font-weight: 500;
}

.footer-link {
  text-align: center;
  margin-top: 20px;
  color: #b7b7b7;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
  transform: scale(1.05);
  cursor: pointer;
}

.footer-link:focus {
  outline: none;
}

.auth-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 20px;
  color: #dc2626;
  font-size: 14px;
}

.auth-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 20px;
  color: #166534;
  font-size: 14px;
}
