/* login.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('motvin-icons.css');

body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  font-family: 'Outfit', sans-serif;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.auth-page-logo {
  position: absolute;
  top: 26px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 8.68px;
  text-decoration: none;
}

.auth-page-logo-icon {
  width: 44px;
  height: 44px;
}

.auth-page-logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 25.9px;
  color: #0b0b0b;
  margin: 0;
  letter-spacing: -0.52px;
}

.auth-page-footer {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: rgba(95, 99, 104, 0.9);
  text-align: center;
  text-decoration: none;
}

.auth-page-footer:hover {
  text-decoration: underline;
}

/* Auth Modal Content (reused for page) */
.auth-modal-content {
  background: #fff;
  width: 100%;
  max-width: 380px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

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

.auth-modal-header h2 {
  margin: 0 0 4px;
  font-size: 24px;
  font-weight: 600;
  color: #202124;
}

.auth-modal-header p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #5f6368;
}

.auth-google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 12px;
  gap: 8px;
  background: #fff;
  border: 1px solid #767676;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  transition: background 0.2s;
  box-sizing: border-box;
}

.auth-google-btn:hover {
  background: #f8f9fa;
}

.auth-google-btn img {
  width: 18px;
  height: 18px;
}

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #dadce0;
}

.auth-divider span {
  padding: 0 16px;
  color: #5f6368;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
}

.auth-input-group {
  margin-bottom: 10px;
  background: #ebebeb;
  border-radius: 8px;
  padding: 6px 10px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-sizing: border-box;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.auth-input-group:focus-within {
  border-color: #000;
}

.auth-input-group label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #0c0c0c;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}

.auth-input-group input {
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  background: transparent;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  color: #000;
  outline: none;
  line-height: 1;
}

.auth-submit-btn {
  width: 100%;
  padding: 14px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 6px;
}

.auth-submit-btn:hover {
  opacity: 0.8;
}

.auth-modal-footer {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 400;
  color: #5f6368;
}

.auth-modal-footer a {
  color: #000;
  font-weight: 500;
  text-decoration: underline;
  text-underline-position: from-font;
}

.auth-modal-footer a:hover {
  opacity: 0.8;
}

.auth-error-msg {
  color: #d93025;
  font-size: 13px;
  margin-top: 8px;
  margin-bottom: 8px;
  text-align: center;
}
.cookies-banner {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  background-color: #202124;
  border-radius: 35px;
  width: 418px;
  padding: 32px;
  box-sizing: border-box;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
}

.cookies-banner * {
  font-family: 'Outfit', sans-serif !important;
}

.cookies-banner-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookies-banner-header {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.cookies-banner-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

@keyframes cookieWiggle {

  0%,
  85% {
    transform: scale(1) rotate(0deg);
  }

  88% {
    transform: scale(1.15) rotate(-12deg);
  }

  92% {
    transform: scale(1.15) rotate(12deg);
  }

  96% {
    transform: scale(1.05) rotate(-6deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
  }
}

.cookies-icon {
  width: 36px;
  height: 36px;
  animation: cookieWiggle 4s infinite;
  transform-origin: center;
}

.cookies-title {
  font-weight: 300;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: -0.21px;
  margin: 0;
}

.cookies-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  right: -12px;
  top: -12px;
  transition: background 0.2s;
}

.cookies-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.cookies-close-btn img {
  width: 24px;
  height: 24px;
}

.cookies-desc {
  font-size: 14px;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.6);
  margin: 0px 0px 28px;
  letter-spacing: -0.21px;
}

.cookies-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookies-link:hover {
  color: #fff;
}

.cookies-actions {
  display: flex;
  gap: 12px;
}

.cookies-actions button {
  flex: 1;
  padding: 13px 24px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  cursor: pointer;
  letter-spacing: -0.07px;
  transition: all 0.2s;
  border: 1px solid #fff;
}

.btn-cookies-primary {
  background: #fff;
  color: #202124;
}

.btn-cookies-primary:hover {
  background: #f0f0f0;
}

.btn-cookies-secondary {
  background: transparent;
  color: #fff;
}

.btn-cookies-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: transparent;
}

.cookies-state-settings {
  padding-top: 12px;
}

.cookies-settings-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.cookie-setting-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 4px;
}

.cookie-setting-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-setting-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: -0.21px;
}

.cookie-setting-name p {
  margin: 0;
  padding-bottom: 0;
}

.cookie-bullet {
  width: 17px;
  height: 17px;
}

.cookie-setting-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  letter-spacing: -0.21px;
}

.cookie-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 100%);
  flex: none;
  align-self: stretch;
  border: none;
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  cursor: pointer;
  flex-shrink: 0;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-switch-track {
  position: relative;
  width: 32px;
  height: 16px;
  border-radius: 16px;
  border: 1px solid #fff;
  background-color: transparent;
  transition: .2s;
  box-sizing: border-box;
}

.cookie-switch-thumb {
  position: absolute;
  height: 16px;
  width: 16px;
  left: -1px;
  bottom: -1px;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: .2s;
  box-sizing: border-box;
}

.cookie-switch input:checked+.cookie-switch-track .cookie-switch-thumb {
  transform: translateX(16px);
  background-color: #fff;
}

.cookie-switch.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.cookie-switch.disabled .cookie-switch-thumb {
  transform: translateX(16px);
  background-color: #000;
}

