/* ========== BASE ========== */
.auth-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-body);
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: var(--font-sans);
}

#auth-app {
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
}

#auth-content {
  width: 100%;
  height: 100%;
}

/* ========== ESTRUTURA PRINCIPAL ========== */
.auth-page {
  display: flex;
  height: 100vh;
  width: 100%;
  background: var(--bg-body);
  transition: background 0.3s ease;
  overflow: hidden;
}

/* Coluna esquerda (conteúdo) */
.auth-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 56px;
  position: relative;
  overflow-y: auto;
  background: var(--bg-body);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.auth-left::-webkit-scrollbar {
  display: none;
}

.auth-content-center {
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
}

/* Coluna direita (microdots) */
.auth-right {
  flex: 1;
  background-color: var(--bg-body);
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1.2px, transparent 1.2px);
  background-size: 20px 20px;
  background-position: center;
  opacity: 0.6;
  border-left: 1px solid rgba(255, 255, 255, 0.04);
}

[data-theme="dark"] .auth-right {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.10) 1.2px, transparent 1.2px);
  opacity: 0.7;
}

/* ========== HEADER ========== */
.auth-header {
  margin-bottom: 28px;
  text-align: center;
}

.auth-header .logo {
  height: 48px;
  width: auto;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.auth-header h1 {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 3px;
  letter-spacing: -0.02em;
}

.auth-header p {
  color: var(--text-secondary);
  font-size: 12.5px;
  font-weight: 400;
  margin-top: 2px;
  opacity: 0.6;
}

/* ========== INDICADOR DE ÚLTIMO LOGIN ========== */
.last-login-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.last-login-indicator .bracket-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 18px;
  font-weight: 200;
  color: var(--text-muted);
  opacity: 0.35;
  line-height: 1;
}

.last-login-indicator .bracket-wrapper .bracket {
  font-size: 22px;
  color: var(--text-muted);
  opacity: 0.3;
}

.last-login-indicator .bracket-wrapper .method-label {
  font-size: 11.5px;
  font-weight: 400;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
  padding: 2px 14px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.last-login-indicator .last-login-text {
  font-size: 10.5px;
  color: var(--text-muted);
  opacity: 0.3;
  margin-top: 3px;
  font-weight: 300;
}

/* ========== MÉTODOS DE AUTENTICAÇÃO ========== */
.auth-methods {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  width: 100%;
}

.auth-method-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 24px;
  border-radius: 60px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.25s ease;
  width: 100%;
  max-width: 340px;
  font-family: var(--font-sans);
  position: relative;
  letter-spacing: 0.02em;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.auth-method-btn:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.auth-method-btn .method-icon {
  font-size: 15px;
  color: var(--text-secondary);
  transition: color 0.2s;
  opacity: 0.6;
}

.auth-method-btn:hover .method-icon {
  color: var(--text-primary);
  opacity: 0.9;
}

.auth-method-btn.google-btn {
  border-color: rgba(255, 255, 255, 0.06);
}

.auth-method-btn.google-btn:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

/* Parênteses (último método) */
.auth-method-btn.last-method::before,
.auth-method-btn.last-method::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: 200;
  color: var(--text-muted);
  opacity: 0.2;
  pointer-events: none;
}

.auth-method-btn.last-method::before {
  left: -12px;
  content: '(';
}

.auth-method-btn.last-method::after {
  right: -12px;
  content: ')';
}

/* ========== FORMULÁRIO ========== */
.auth-form-wrapper {
  display: none;
  animation: fadeSlideUp 0.35s ease forwards;
  width: 100%;
}

.auth-form-wrapper.visible {
  display: block;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  align-items: center;
}

/* ========== CAMPOS COM BORDAS CURVADAS ========== */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 100%;
  max-width: 340px;
}

.input-container {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.25s ease;
  width: 100%;
}

.input-container:focus-within {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.03);
}

.input-container .input-icon {
  position: absolute;
  left: 16px;
  color: var(--text-muted);
  font-size: 14px;
  pointer-events: none;
  transition: color 0.2s;
  opacity: 0.3;
}

.input-container:focus-within .input-icon {
  color: var(--text-primary);
  opacity: 0.7;
}

.input-container input {
  width: 100%;
  padding: 10px 16px 10px 42px;
  background: transparent;
  border: none;
  outline: none;
  font-size: 13px;
  font-family: var(--font-sans);
  color: var(--text-primary);
  transition: all 0.2s;
  border-radius: 60px;
}

.input-container input::placeholder {
  color: transparent;
}

.input-container label {
  position: absolute;
  left: 42px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 12.5px;
  pointer-events: none;
  transition: all 0.2s ease;
  background: transparent;
  padding: 0 4px;
  opacity: 0.4;
}

.input-container input:focus ~ label,
.input-container.filled label,
.input-container input:not(:placeholder-shown) ~ label {
  top: 0;
  transform: translateY(-50%) scale(0.8);
  background: var(--bg-body);
  color: var(--text-primary);
  padding: 0 5px;
  border-radius: 4px;
  opacity: 0.7;
}

.input-container .toggle-password {
  position: absolute;
  right: 16px;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s;
  opacity: 0.3;
}

.input-container .toggle-password:hover {
  color: var(--text-primary);
  opacity: 0.7;
}

/* ========== INFORMAÇÃO DA SENHA (minimalista) ========== */
.password-info {
  font-size: 10.5px;
  color: var(--text-muted);
  margin-top: 3px;
  padding: 0 4px;
  opacity: 0.35;
  font-weight: 300;
  letter-spacing: 0.02em;
  text-align: center;
  width: 100%;
  max-width: 340px;
}

.password-info p {
  margin: 0;
}

/* ========== OPÇÕES ========== */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  margin-top: 2px;
  width: 100%;
  max-width: 340px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  color: var(--text-secondary);
  font-weight: 400;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.checkbox-container:hover {
  opacity: 0.8;
}

.checkbox-container input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  transition: all 0.2s;
  flex-shrink: 0;
}

.checkbox-container input:checked + .checkmark {
  background: var(--text-primary);
  border-color: var(--text-primary);
  position: relative;
}

.checkbox-container input:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--bg-body);
  font-size: 8px;
  font-weight: 700;
}

[data-theme="dark"] .checkbox-container input:checked + .checkmark {
  background: #f0f0f0;
  border-color: #f0f0f0;
}

/* ========== ESQUECEU A SENHA (estilizado) ========== */
.forgot-password {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 400;
  font-size: 11.5px;
  transition: all 0.2s;
  opacity: 0.4;
  padding: 2px 8px;
  border-radius: 20px;
  border: 1px solid transparent;
}

.forgot-password:hover {
  color: var(--text-primary);
  opacity: 0.8;
  border-color: rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

/* ========== TERMOS (minimalista) ========== */
.form-terms {
  margin-top: 2px;
  width: 100%;
  max-width: 340px;
}

.form-terms .checkbox-container {
  font-size: 11.5px;
  opacity: 0.35;
}

.form-terms .checkbox-container:hover {
  opacity: 0.7;
}

/* ========== BOTÕES DE AÇÃO (texto preto) ========== */
.auth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 32px;
  border-radius: 60px;
  border: none;
  font-size: 13.5px;
  font-weight: 500;
  font-family: var(--font-sans);
  background: #e8e8e8;
  color: #000000 !important;
  cursor: pointer;
  transition: all 0.25s ease;
  width: 100%;
  max-width: 340px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.auth-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  background: #f5f5f5;
}

.auth-btn:disabled {
  opacity: 0.2;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.auth-btn i {
  opacity: 0.6;
  transition: opacity 0.2s;
  color: #000000 !important;
}

.auth-btn:hover i {
  opacity: 0.9;
}

.auth-btn span {
  color: #000000 !important;
}

/* ========== DIVISOR SOCIAL ========== */
.social-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  color: var(--text-muted);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.2;
  width: 100%;
  max-width: 340px;
}

.social-divider::before,
.social-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

/* ========== SOCIAL LOGIN (Google centralizado e sem sublinhado) ========== */
.social-login {
  display: flex;
  justify-content: center;
  width: 100%;
}

.social-login .auth-method-btn {
  text-decoration: none;
  width: 100%;
  max-width: 340px;
  justify-content: center;
}

.social-login .auth-method-btn.google-btn {
  text-decoration: none;
}

/* ========== FOOTER ========== */
.auth-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  margin-top: 16px;
  font-size: 11.5px;
  color: var(--text-secondary);
}

.auth-footer .footer-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 400;
  transition: all 0.2s;
  padding: 2px 8px;
  border-radius: 30px;
  background: transparent;
  opacity: 0.4;
}

.auth-footer .footer-link i {
  font-size: 12px;
  color: var(--text-muted);
  transition: color 0.2s;
  opacity: 0.3;
}

.auth-footer .footer-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
  opacity: 0.9;
}

.auth-footer .footer-link:hover i {
  color: var(--text-primary);
  opacity: 0.6;
}

.auth-footer .footer-link strong {
  color: var(--text-primary);
  font-weight: 450;
}

/* ========== MENSAGENS ========== */
.messages-container {
  background: rgba(255, 50, 50, 0.08);
  color: var(--text-primary);
  padding: 8px 12px;
  border-radius: 10px;
  margin-bottom: 12px;
  font-size: 12px;
  display: none;
  font-weight: 400;
  border-left: 2px solid rgba(255, 50, 50, 0.3);
  width: 100%;
  max-width: 340px;
}

.messages-container.success {
  background: rgba(50, 255, 50, 0.06);
  border-left-color: rgba(50, 255, 50, 0.2);
}

/* ========== FORÇA DA SENHA ========== */
.password-strength {
  margin-top: 4px;
  width: 100%;
  max-width: 340px;
}

.strength-bar {
  height: 2px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  width: 0%;
  transition: width 0.3s, background 0.3s;
}

.strength-text {
  font-size: 9.5px;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
  opacity: 0.3;
}

.strength-text span {
  font-weight: 400;
}

.password-match {
  display: none;
  align-items: center;
  gap: 4px;
  margin-top: 3px;
  font-size: 11px;
  font-weight: 400;
  width: 100%;
  max-width: 340px;
}

.password-match .match-icon {
  font-size: 13px;
}

/* ========== PÁGINAS ESPECÍFICAS ========== */
.reset-container,
.activation-container,
.unlock-container,
.lockout-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.reset-card,
.activation-card,
.unlock-card,
.lockout-card {
  max-width: 380px;
  width: 100%;
}

/* ========== ÍCONES DE BLOQUEIO ========== */
.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 22px;
  color: var(--text-primary);
  transition: border-color 0.3s;
}

[data-theme="dark"] .icon-circle {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.06);
}

/* ========== COUNTDOWN ========== */
.countdown-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 16px 0;
}

.countdown-circle {
  width: 80px;
  height: 80px;
  position: relative;
}

.countdown-circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.countdown-circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 2;
}

.countdown-circle {
  fill: none;
  stroke: var(--text-primary);
  stroke-width: 2;
  stroke-linecap: round;
  transition: stroke-dasharray 1s linear;
}

#countdown {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 19px;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.countdown-label {
  text-align: center;
  color: var(--text-muted);
  font-size: 9.5px;
  margin-top: 5px;
  opacity: 0.3;
}

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 991px) {
  .auth-page {
    flex-direction: column;
    height: 100vh;
  }

  .auth-left {
    padding: 32px 28px;
    border-right: none;
    flex: 1;
    justify-content: center;
  }

  .auth-right {
    display: none !important;
  }

  .auth-content-center {
    max-width: 100%;
  }

  .auth-header h1 {
    font-size: 20px;
  }

  .auth-method-btn {
    max-width: 400px;
  }

  .form-group {
    max-width: 400px;
  }

  .form-options {
    max-width: 400px;
  }

  .form-terms {
    max-width: 400px;
  }

  .social-divider {
    max-width: 400px;
  }

  .social-login .auth-method-btn {
    max-width: 400px;
  }

  .messages-container {
    max-width: 400px;
  }

  .password-strength {
    max-width: 400px;
  }

  .password-match {
    max-width: 400px;
  }

  .password-info {
    max-width: 400px;
  }

  .auth-btn {
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .auth-left {
    padding: 24px 16px;
  }

  .auth-method-btn {
    padding: 8px 18px;
    font-size: 12.5px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .auth-method-btn.last-method::before,
  .auth-method-btn.last-method::after {
    display: none;
  }

  .input-container {
    max-width: 100%;
    border-radius: 60px;
  }

  .input-container input {
    padding: 9px 14px 9px 38px;
    font-size: 12.5px;
  }

  .input-container label {
    left: 38px;
    font-size: 12px;
  }

  .input-container .input-icon {
    font-size: 13px;
    left: 14px;
  }

  .input-container .toggle-password {
    right: 14px;
  }

  .auth-btn {
    padding: 9px 22px;
    font-size: 13px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .auth-header .logo {
    height: 40px;
  }

  .auth-header h1 {
    font-size: 18px;
  }

  .auth-header p {
    font-size: 12px;
  }

  .last-login-indicator .bracket-wrapper {
    font-size: 17px;
  }

  .last-login-indicator .bracket-wrapper .method-label {
    font-size: 10.5px;
    padding: 1px 10px;
  }

  .last-login-indicator .last-login-text {
    font-size: 9.5px;
  }

  .form-options {
    max-width: 100%;
    font-size: 11px;
  }

  .form-terms {
    max-width: 100%;
  }

  .form-terms .checkbox-container {
    font-size: 11px;
  }

  .social-divider {
    max-width: 100%;
    font-size: 9px;
  }

  .social-login .auth-method-btn {
    max-width: 100%;
  }

  .auth-footer {
    font-size: 11px;
  }

  .auth-footer .footer-link {
    padding: 2px 6px;
  }

  .auth-footer .footer-link i {
    font-size: 11px;
  }

  .password-info {
    font-size: 10px;
    max-width: 100%;
  }

  .password-strength {
    max-width: 100%;
  }

  .password-match {
    max-width: 100%;
  }

  .messages-container {
    max-width: 100%;
  }

  .form-group {
    max-width: 100%;
  }

  .icon-circle {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .countdown-circle {
    width: 68px;
    height: 68px;
  }

  #countdown {
    font-size: 17px;
  }

  .reset-card,
  .activation-card,
  .unlock-card,
  .lockout-card {
    max-width: 100%;
  }
}

@media (max-width: 360px) {
  .auth-left {
    padding: 16px 12px;
  }

  .auth-method-btn {
    font-size: 11.5px;
    padding: 7px 14px;
  }

  .input-container input {
    font-size: 11.5px;
    padding: 8px 12px 8px 34px;
  }

  .input-container label {
    font-size: 11px;
    left: 34px;
  }

  .input-container .input-icon {
    font-size: 12px;
    left: 12px;
  }

  .auth-btn {
    font-size: 12px;
    padding: 8px 18px;
  }

  .auth-header .logo {
    height: 36px;
  }

  .auth-header h1 {
    font-size: 16px;
  }

  .password-info {
    font-size: 9px;
  }
}

/* ========== PÁGINA DE CONFIRMAÇÃO DE ENVIO (Quase lá!) ========== */
.confirmation-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 0;
}

.confirmation-container .icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

[data-theme="dark"] .confirmation-container .icon-circle {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.confirmation-container h2 {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.confirmation-container p {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 20px;
  opacity: 0.6;
  line-height: 1.6;
}

.confirmation-container .auth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 32px;
  border-radius: 60px;
  border: none;
  font-size: 13.5px;
  font-weight: 500;
  font-family: var(--font-sans);
  background: #e8e8e8;
  color: #000000 !important;
  cursor: pointer;
  transition: all 0.25s ease;
  width: 100%;
  max-width: 340px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-decoration: none;
}

.confirmation-container .auth-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  background: #f5f5f5;
}

.confirmation-container .auth-btn i {
  opacity: 0.6;
  transition: opacity 0.2s;
  color: #000000 !important;
}

.confirmation-container .auth-btn:hover i {
  opacity: 0.9;
}

.confirmation-container .auth-btn span {
  color: #000000 !important;
}

.confirmation-container .auth-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  margin-top: 16px;
  font-size: 11.5px;
  color: var(--text-secondary);
}

.confirmation-container .auth-footer .footer-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 400;
  transition: all 0.2s;
  padding: 2px 8px;
  border-radius: 30px;
  background: transparent;
  opacity: 0.4;
}

.confirmation-container .auth-footer .footer-link i {
  font-size: 12px;
  color: var(--text-muted);
  transition: color 0.2s;
  opacity: 0.3;
}

.confirmation-container .auth-footer .footer-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
  opacity: 0.9;
}

.confirmation-container .auth-footer .footer-link:hover i {
  color: var(--text-primary);
  opacity: 0.6;
}

.confirmation-container .auth-footer .footer-link strong {
  color: var(--text-primary);
  font-weight: 450;
}

/* ========== RESPONSIVIDADE PARA CONFIRMAÇÃO ========== */
@media (max-width: 480px) {
  .confirmation-container .icon-circle {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .confirmation-container h2 {
    font-size: 18px;
  }

  .confirmation-container p {
    font-size: 12px;
  }

  .confirmation-container .auth-btn {
    padding: 9px 22px;
    font-size: 13px;
    max-width: 100%;
  }
}

@media (max-width: 360px) {
  .confirmation-container .icon-circle {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .confirmation-container h2 {
    font-size: 16px;
  }

  .confirmation-container p {
    font-size: 11px;
  }

  .confirmation-container .auth-btn {
    font-size: 12px;
    padding: 8px 18px;
  }
}