@charset "UTF-8";
/* Eric Meyer's CSS Reset */
/* 1. Set all elements to have no margin or padding */
@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;600&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 2. Remove default font family and set a sensible default for all elements */
html {
  font-family: sans-serif;
}

/* 3. Remove list styles */
ol, ul {
  list-style: none;
}

/* 4. Remove quotes for blockquotes and other quoted content */
blockquote, q {
  quotes: none;
}

/* 5. Make links look like links but remove underlines */
a {
  text-decoration: none;
  color: inherit;
}

/* 6. Set background to white and ensure the page takes up the full height */
body {
  background: radial-gradient(circle at 20% 30%, rgba(61, 156, 254, 0.08) 0%, transparent 35%), radial-gradient(circle at 60% 40%, rgba(143, 0, 255, 0.06) 0%, transparent 45%), radial-gradient(circle at 40% 70%, rgba(0, 240, 255, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 60%, rgba(255, 107, 255, 0.06) 0%, transparent 40%), radial-gradient(circle at 70% 90%, rgba(255, 213, 0, 0.05) 0%, transparent 50%);
  min-height: 100%;
  line-height: 1.5;
  font-family: "Arial", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 7. Make images responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 8. Remove border from fieldsets and adjust the padding */
fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

/* 9. Normalize form elements */
input,
button,
textarea,
select {
  font: inherit;
  border: none;
  background: transparent;
  color: inherit;
  line-height: normal;
}

/* 10. Normalize table styles */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 11. Remove horizontal and vertical scrollbar */
html, body {
  overflow-x: hidden;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

body {
  font-family: "Mulish", sans-serif;
  background-color: #fff;
}

.auth-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0rem 2rem 0rem 2rem;
  gap: 1rem; /* ← gives spacing between flash and form */
  height: 100vh;
  justify-content: center;
  position: relative;
}

.auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.auth-form-container {
  width: 100%;
  max-width: 400px;
  padding: 1rem;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 8px;
  text-align: left;
}

h2 {
  margin-bottom: 1rem;
  font-weight: 600;
  color: #000;
  text-align: center;
}

form label {
  color: #000;
}

form div {
  margin-bottom: 1rem;
}

form input[type=text],
form input[type=password],
form input[type=email] {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #000;
  color: #000;
  caret-color: #000;
  border-radius: 4px;
  font-size: 1rem;
  margin-top: 0.25rem;
  transition: border-color;
}

form input[type=text]:focus,
form input[type=password]:focus,
form input[type=email]:focus {
  border-color: #3D9CFE;
}

form input::-moz-placeholder {
  color: #aaa;
}

form input::placeholder {
  color: #aaa;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  color: white;
}

.form-check-input {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid #000;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  cursor: pointer;
  transition: all;
}

.form-check-input:focus {
  border-color: #3D9CFE;
}

.form-check-input:checked {
  background-color: #3D9CFE;
  border-color: #3D9CFE;
}

.form-check-input:checked::after {
  content: "✓";
  color: white;
  font-size: 14px;
  display: block;
  text-align: center;
  line-height: 1;
}

button {
  padding: 0.5rem 1rem;
  background-color: #3D9CFE;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  width: 100%;
  transition: background-color, transform;
}

button:hover {
  background-color: #1E88FF;
}

button:active {
  background-color: #106FD9;
  transform: scale(0.98);
}

button:focus-visible {
  outline: 2px solid #3D9CFE; /* Your desired color and thickness */
  outline-offset: 2px; /* Adds space between the outline and the element's visual border */
  border-radius: 4px;
}

.auth-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 1rem;
  text-align: center;
}

.auth-links a {
  color: #106FD9;
  text-decoration: none;
  transition: color;
}

.auth-links a:hover {
  text-decoration: underline;
  color: #106FD9;
}

.auth-signup {
  margin-top: 0.5rem;
  color: #000;
}

.auth-login {
  margin-top: 0.5rem;
  color: #000;
}

.disclosure {
  font-size: 0.7rem;
  padding-top: 1rem;
  color: #000;
}

.disclosure a {
  text-decoration: none;
  color: #106FD9;
}

.disclosure a:hover {
  text-decoration: underline;
  color: #106FD9;
}

.flash-messages {
  width: 100%;
  max-width: 400px;
  text-align: center;
  background-color: #fff;
  color: #E0115F;
  border: 1px solid black;
  border-radius: 8px;
  padding: 1rem 2rem;
  font-size: 1rem;
  box-sizing: border-box;
}

/* === General Navbar Styles === */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 1rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* === Link Wrapper for Logo and Text === */
.navbar-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  transition: background-color 0.2s ease, transform 0.1s ease;
  will-change: transform;
  cursor: default;
  pointer-events: none;
}

/* === Logo Image === */
.navbar-logo {
  height: 32px;
  width: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  pointer-events: none;
}

/* === Desktop Hover Effect === */
/* === Mobile Active Scale Effect === */
@media (max-width: 768px) {
  .navbar-link:active {
    transform: scale(0.97);
  }
}
.gsi-material-button {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: #f2f2f2 !important;
  background-image: none;
  border: none;
  border-radius: 4px;
  box-sizing: border-box;
  color: #1f1f1f !important;
  cursor: pointer;
  font-family: "Roboto", arial, sans-serif;
  font-size: 14px;
  height: 40px;
  letter-spacing: 0.25px;
  overflow: hidden;
  padding: 0 12px;
  position: relative;
  text-align: center;
  transition: background-color 0.218s, border-color 0.218s, box-shadow 0.218s;
  vertical-align: middle;
  white-space: nowrap;
  width: 100%;
  min-width: -moz-min-content;
  min-width: min-content;
}

.gsi-material-button .gsi-material-button-icon {
  height: 20px;
  margin-right: 12px;
  min-width: 20px;
  width: 20px;
}

.gsi-material-button .gsi-material-button-content-wrapper {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: center;
  position: relative;
  width: 100%;
}

.gsi-material-button .gsi-material-button-contents {
  flex-grow: 0;
  font-family: "Roboto", arial, sans-serif;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}

.gsi-material-button .gsi-material-button-state {
  transition: opacity 0.218s;
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.gsi-material-button:disabled {
  cursor: default;
  background-color: rgba(255, 255, 255, 0.3803921569) !important;
}

.gsi-material-button:disabled .gsi-material-button-state {
  background-color: rgba(31, 31, 31, 0.1215686275) !important;
}

.gsi-material-button:disabled .gsi-material-button-contents {
  opacity: 38% !important;
}

.gsi-material-button:disabled .gsi-material-button-icon {
  opacity: 38% !important;
}

.gsi-material-button:not(:disabled):active .gsi-material-button-state,
.gsi-material-button:not(:disabled):focus .gsi-material-button-state {
  background-color: #001d35 !important;
  opacity: 12% !important;
}

.gsi-material-button:not(:disabled):hover {
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15) !important;
}

.gsi-material-button:not(:disabled):hover .gsi-material-button-state {
  background-color: #001d35 !important;
  opacity: 8%;
}

.separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1rem 0;
  color: #aaa;
}

.separator::before,
.separator::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #aaa;
}

.separator:not(:empty)::before {
  margin-right: 0.75em;
}

.separator:not(:empty)::after {
  margin-left: 0.75em;
}

/* ==================================================================== */
/* GLOBAL ACCESSIBILITY FOCUS STYLES                                    */
/* Place this section strategically:
   - After your general CSS Reset.
   - Before specific component styles (like auth-form-container, buttons, etc.)
   This ensures a consistent outline for all tabbable elements by default.
   Specific component styles can then override the border-radius if needed.
/* ==================================================================== */
/*
  This is the primary rule for your focus outline.
  It applies to ALL common interactive elements when focused via keyboard.
*/
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible { /* Catches any element with a tabindex attribute */
  outline: 2px solid #3D9CFE; /* Your desired color and thickness */
  outline-offset: 2px; /* Adds space between the outline and the element's visual border */
  border-radius: 4px; /* Default for most rectangular elements */
}

/*
  Now, let's adjust specific elements that have unique shapes or behaviors.
  These will override the border-radius from the global rule where necessary.
*/
/* For the Google Sign-In button, which has its own complex focus state.
   You need to be careful here. It uses `outline: none;` internally,
   and also has a background-color on its `:focus` state.
   If you want your blue outline, you might need `!important` to override
   its internal `outline: none;` or shadows. Test this carefully.
*/
.gsi-material-button:focus-visible {
  outline: 2px solid #3D9CFE !important; /* Use !important if needed to override */
  outline-offset: 2px !important; /* Use !important if needed */
  border-radius: 4px !important; /* Match its border-radius, use !important if needed */
  /* You might also want to ensure its background/box-shadow doesn't conflict */
  box-shadow: 0 0 0 3px #3D9CFE, 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15) !important;
  /* The line above adds your blue outline as a box-shadow for more control,
     and also keeps its existing shadow. Adjust as necessary. */
}

/* ==================================================================== */
/* END GLOBAL ACCESSIBILITY FOCUS STYLES                                */
/* ==================================================================== */
/* --- Other CSS Sections Below --- */
/* Adjustments in your form styles (remove conflicting 'outline: none;') */
form input[type=text]:focus,
form input[type=password]:focus,
form input[type=email]:focus {
  border-color: #3D9CFE;
  /* CRITICAL CHANGE: Remove 'outline: none;' */
  /* outline: none; */
}

.form-check-input:focus {
  border-color: #3D9CFE;
  /* CRITICAL CHANGE: Remove 'outline: none;' */
  /* outline: none; */
}

/* For your general button focus, this is now handled by the global :focus-visible
   unless you want a *different* non-outline effect on button:focus (e.g., box-shadow)
   If you *only* want the blue outline for keyboard, you can remove this specific button:focus rule.
*/
button:focus-visible {
  outline: 2px solid #3D9CFE; /* This is good if you want it on mouse click too */
  outline-offset: 2px;
  border-radius: 4px;
}

/*
   Consider changing `button:focus` above to `button:focus-visible`
   if you only want the blue outline to appear on keyboard navigation.
   If `button:focus` is intended to apply for both mouse and keyboard clicks, keep it.
   However, having a general `button:focus-visible` rule and a specific `button:focus`
   can lead to redundant or conflicting styles.
   It's generally better to rely on `:focus-visible` for keyboard accessibility.
*//*# sourceMappingURL=auth.css.map */