/* Base */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #004aad;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body * {
	caret-color: transparent;
}

/* Reforça cursor visível em campos editáveis */
input,
textarea,
[contenteditable="true"],
select,
button {
	caret-color: auto !important;
}

main {
  flex: 1;
}

/* NavBar Dropdown */
.navbar .dropdown-toggle {
    color: #ffffff;
    transition: color 0.3s ease;
}

.navbar .dropdown-toggle:hover,
.navbar .dropdown-toggle:focus {
    color: #0b93f2;
}

.dropdown-menu {
    background-color: #1c1c2e;
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    min-width: 200px;
    z-index: 1050;
}

.dropdown-menu .dropdown-item {
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    background-color: #0b93f2;
    color: #ffffff;
}

.navbar .dropdown-toggle::after {
    margin-left: 0.3em;
    vertical-align: middle;
}

@media (max-width: 992px) {
    .dropdown-menu {
        position: absolute !important;
    }
}

/* Navbar */
.navbar {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.navbar-brand {
  font-size: 1.75rem;
}

.nav-link {
  font-size: 1.1rem;
}

.navbar form {
  align-items: center;
}

.navbar form .form-control {
  height: calc(1.75em + 0.75rem + 2px);
  font-size: 1rem;
}

.btn-outline-light {
  padding: 0.5rem 1rem;
  font-size: 1rem;
}

.navbar .d-flex.align-items-center {
  gap: 0.75rem;
}

/* Cart */
.cart-icon {
  display: flex;
  align-items: center;
}

.cart-icon img {
  width: 36px;
  filter: invert(100%);
}

#cart-count {
  font-size: 0.75rem;
  top: -6px;
  left: 22px;
}

/* Cards */
.category-card {
  background-color: #1e1e1e;
  border: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.card-title {
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

/* Cart icon */
.icon-button {
    background-color: #0b93f2;
    border: none;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.icon-button:hover {
    background-color: #004aad; /* verde mais escuro no hover */
}

/* Botão padrão */
.btn.btn-primary {
  background-color: transparent !important;
  color: #e0e0e0 !important;
  border: 1.5px solid #cccccc !important;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn.btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.05) !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
}

/* Footer */
footer {
  margin-top: auto;
  border-top: 1px solid #333;
  background-color: #1e1e1e;
  color: #ccc;
  padding: 1rem 0;
  text-align: center;
}

/* Banner Carrossel */
#promo-carousel {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.carousel-wrapper {
  transition: transform 0.6s ease;
  height: 100%;
}

.banner-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  padding: 10px 14px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background 0.3s;
}

.arrow:hover {
  background: rgba(0, 0, 0, 0.7);
}

.arrow.left {
  left: 16px;
}

.arrow.right {
  right: 16px;
}

/* Responsivo */
@media (max-width: 992px) {
  .marketplace-text {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .logo-img {
    height: 50px;
  }

  .navbar .location-info {
    font-size: 0.9rem;
  }

  .navbar .form-control {
    width: 160px;
    height: 2.5rem;
    font-size: 0.95rem;
  }

  .btn-outline-light {
    padding: 0.4rem 0.8rem;
    font-size: 0.95rem;
  }

  .cart-icon img {
    width: 30px;
  }

  #cart-count {
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  #promo-carousel {
    height: 180px;
  }

  .arrow {
    font-size: 18px;
    padding: 8px 12px;
  }

  .marketplace-text {
    text-align: center;
    width: 100%;
    margin-top: 0.5rem;
    font-size: 1.1rem;
  }

  .navbar .form-control {
    width: 140px;
  }

  .location-info {
    display: none;
  }

  .navbar .d-flex.align-items-center {
    gap: 0.8rem;
  }

  .cart-icon img {
    width: 28px;
  }
}

/* Logo */
.logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

/* Texto do marketplace */
.marketplace-text {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 600;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Localização */
.navbar .location-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #ffffff;
}

.navbar .location-info img,
.location-info img {
  filter: invert(100%);
}

.location-info span {
  font-size: 0.95rem;
  white-space: nowrap;
}

/* Container principal */
.main-container-index {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 180px); /* considerando header + footer */
  padding: 2rem 1rem;
  background-color: #004aad;
  color: #ffffff;
}

.main-container {
  background-color: #1e1e1e;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Título */
.main-container h1 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0.8rem 0 1.4rem 0;
  text-align: center;
  color: #ffffff;
}

/* Campos de texto */
.txt_field {
  position: relative;
  margin-bottom: 1.2rem;
}

.txt_field input {
  width: 100%;
  padding: 0.75rem;
  background: transparent;
  border: 1px solid #444;
  border-radius: 6px;
  font-size: 1rem;
  color: #fff;
  outline: none;
  transition: border-color 0.3s;
}

.txt_field label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 0.95rem;
  pointer-events: none;
  transition: 0.3s ease;
}

.txt_field input:focus {
  border-color: #0B93F2;
}

.txt_field input:focus ~ label,
.txt_field input:not(:placeholder-shown):not(:focus) ~ label {
  top: -10px;
  font-size: 0.8rem;
  color: #0b93f2;
  background-color: #1e1e1e;
  padding: 0 4px;
}

/* Botão de envio */
input[type="submit"] {
  background-color: #0b93f2 !important;
  color: white !important;
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Mensagem de erro */
#newSearchErrorText {
  color: #ff5252;
  font-size: 0.9rem;
  text-align: center;
}

/* Área de login social */
.social_login {
    margin-top: 15px;
}
.social_login .social_buttons a.social_button {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 10px 25px;
    text-align: center;
    line-height: 50px;
    transition: background-color 0.3s ease;
    background-color: #eee;
}
.social_login .google {
    background-color: #db4437 !important;
}
.social_login .apple {
    background-color: #000000 !important;
}
.social_login .facebook {
    background-color: #3b5998 !important;
}
.social_login .instagram {
    background-color: #e4405f !important;
}
.social_login .social_buttons a.social_button:hover {
    opacity: 0.8;
}
.social_login .social_buttons a.social_button img {
    width: 25px;
    height: 25px;
}
.social_login p {
    text-align: center;
    font-size: 14px;
    color: #333;
}
.pass_signup a:first-child {
    font-size: 14px;
}
.pass_signup a:last-child {
    font-size: 14px;
}
.pass_signup a:hover {
    color: #003399;
}

.social_login .social_buttons {
	border-top: 1px solid #ccc;
    margin-bottom: 20px;
}
.pass_signup a:hover {
    color: #003399;
}
.pass_signup {
    font-size: 14px;
}
.social_login .social_buttons {
    margin-bottom: 30px;
    padding-top: 5px;
}
.pass_signup a:hover {
    color: #003399;
}

#newSearchErrorText {
	grid-column: span 4;
	justify-content: center;
	margin: 12px 0px 16px 0px;
	font-size: 14px;
	color: #a60000;
}

p {
	font-size: 20px;
	font-family: "Lato", sans-serif;
	color: #5c5c5c;
	font-weight: 400;
	line-height: 25px;
	margin: 0 0 15px 0;
}

img {
	max-width: 100%;
}
input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
	color: #ffffff;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

/* Links adicionais */

a {
    color: #0b93f2 !important;
    text-decoration: none;
}
.pass_signup {
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
}

.pass_signup a:hover {
  color: #69f0ae;
}

/* Botão "Enter" centralizado */
input[type="submit"] {
  background-color: #0b93f2 !important;
  color: white !important;
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  display: block;
  margin: 0 auto;
  text-align: center;
}

/* Campo de texto com label flutuante */
.txt_field {
  position: relative;
  margin-bottom: 1.5rem;
}

.txt_field input {
  width: 100%;
  padding: 0.75rem 0.75rem 0.75rem 0.75rem;
  background: transparent;
  border: 1px solid #444;
  border-radius: 6px;
  font-size: 1rem;
  color: #fff;
  outline: none;
  transition: border-color 0.3s;
}

.txt_field label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.3s ease;
  background-color: #1e1e1e;
  padding: 0 4px;
}

/* Label sobe ao focar ou digitar */
.txt_field input:focus + label,
.txt_field input:not(:placeholder-shown):not(:focus) + label {
  top: -10px;
  left: 10px;
  font-size: 0.8rem;
  color: #0b93f2;
}

/* Corrige z-index se necessário */
.txt_field input:focus {
  border-color: #0B93F2;
  z-index: 1;
}

/* Alinhamento dos botões sociais */

.bg-darkBlue {
    background-color: #1e1e1e;
}

/* Sidebar */
.sidebar {
    margin-top: 10px;
    border-radius: 0px 10px 10px 0px;
    background-color: #1e1e1e;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: fixed;
}

.sidebar.collapsed {
    width: 40px;
}

.toggle-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
    background-color: #333;
    color: white;
    border: 1px solid #555;
    width: 30px;
    height: 60px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 1001;
}

.toggle-btn:hover {
    background-color: #444;
    border-color: #666;
}

.sidebar.collapsed .toggle-btn {
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.sidebar-content {
    padding: 1.4rem;
    padding-right: 36px;
    height: 78vh;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.sidebar.collapsed .sidebar-content {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding: 60px 0 1.5rem;
}

.sidebar-content::-webkit-scrollbar {
    width: 6px;
}

.sidebar-content::-webkit-scrollbar-track {
    background: #2a2a2a;
    border-radius: 3px;
}

.sidebar-content::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 3px;
}

.sidebar-content::-webkit-scrollbar-thumb:hover {
    background: #666;
}

.sidebar-content h5 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    border-bottom: 2px solid #333;
    padding-bottom: 0.5rem;
}

.filter-section {
    margin-bottom: 2rem;
}

.sidebar-content h6 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding-left: 1rem;
}

.price-range {
    margin-bottom: 1rem;
}

.range-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #333;
    outline: none;
    -webkit-appearance: none;
}

.range-slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.range-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #cccccc;
    margin-top: 0.5rem;
}

.checkbox-group {
    margin-bottom: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 0.75rem;
    transform: scale(1.2);
    accent-color: #ffffff;
}

.checkbox-item label {
    color: #cccccc;
    cursor: pointer;
    transition: color 0.3s ease;
}

.checkbox-item:hover label {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar.expanded {
        flex: 0 0 220px;
        width: 220px;
        min-width: 220px;
    }

    .main-content {
        padding: 20px;
    }
}

/* =========================================================
   RESET BÁSICO
========================================================= */

.auth-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================================================
   BACKGROUND
========================================================= */

.auth-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 120px);
    width: 100%;
    padding: 40px 20px;
    background: linear-gradient(to bottom, #004aad, #0b93f2, #d9ecf8);
    font-family: "Inter", "Lato", Arial, sans-serif;
}

/* =========================================================
   CARD
========================================================= */

.auth-card {
    width: 100%;
    max-width: 360px;
    background: #f3f3f3;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    padding: 32px 28px;
    text-align: center;
}

/* =========================================================
   TITLE
========================================================= */

.auth-title {
    margin-bottom: 28px;
    color: #004aad;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
}

/* =========================================================
   FORM
========================================================= */

.auth-form {
    width: 100%;
}

/* =========================================================
   INPUTS
========================================================= */

.auth-field {
    position: relative;
    width: 100%;
    margin-bottom: 24px;
    border-bottom: 1px solid #b8b8b8;
}

.auth-field input {
    width: 100%;
    height: 44px;
    padding: 10px 38px 10px 8px;
    border: none;
    background: transparent;
    font-size: 16px;
    color: #222;
}

.auth-field label {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #9b9b9b;
    font-size: 16px;
    pointer-events: none;
    transition: 0.2s ease;
}

/* FLOAT LABEL */
.auth-field input:focus ~ label,
.auth-field input:not(:placeholder-shown) ~ label {
    top: -6px;
    font-size: 12px;
    color: #004aad;
}

/* =========================================================
   PASSWORD ICON
========================================================= */

.auth-password-field input {
    padding-right: 42px;
}

.auth-toggle-password {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.75;
}

.auth-toggle-password:hover {
    opacity: 1;
}

/* =========================================================
   BUTTON
========================================================= */

.auth-btn {
    width: 100%;
    height: 46px;
    border: none;
    border-radius: 6px;
    background: #004aad;
    color: #fff !important;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.auth-btn:hover {
    background: #00348a;
}

.auth-btn-signup {
    background: #16a34a;
}

.auth-btn-signup:hover {
    background: #12813a;
}

/* =========================================================
   SOCIAL
========================================================= */

.auth-social {
    margin-top: 20px;
}

.auth-social p {
    margin-bottom: 14px;
    font-size: 14px;
    color: #222;
}

/* linha */
.auth-social-buttons {
    border-top: 1px solid #cfcfcf;
    padding-top: 16px;
    display: flex;
    justify-content: center;
    gap: 28px;
}

/* botão social */
.auth-social-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #111;
    font-size: 12px;
    text-decoration: none;
}

.auth-social-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    text-decoration: none;
}

/* CÍRCULO */
.auth-social-button .icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: 0.2s;
}

/* CORES OFICIAIS */
.auth-social-button.google .icon-circle {
    background: #db4437;
}

.auth-social-button.apple .icon-circle {
    background: #000;
}

.auth-social-button.facebook .icon-circle {
    background: #3b5998;
}

/* ÍCONE */
.auth-social-button img {
    width: 24px;
    height: 24px;
}

/* HOVER */
.auth-social-button:hover .icon-circle {
    transform: scale(1.08);
}

/* =========================================================
   LINKS
========================================================= */

.auth-links {
    margin-top: 22px;
    font-size: 14px;
    color: #111;
    line-height: 1.8;
}

.auth-links a {
    color: #004aad;
    text-decoration: none;
}

.auth-links a:hover {
    text-decoration: underline;
}

.auth-links span {
    margin: 0 2px;
}

/* =========================================================
   ERROR
========================================================= */

.auth-error {
    display: block;
    margin: 8px 0 4px 0;
    color: #b30000;
    font-size: 14px;
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 480px) {

    .auth-card {
        max-width: 100%;
        padding: 26px 18px;
    }

    .auth-title {
        font-size: 28px;
    }

    .auth-social-buttons {
        gap: 18px;
    }
}

.auth-page {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(180deg, #0d57b7 0%, #53a9ea 100%);
}

.auth-card {
    width: 100%;
    max-width: 520px;
    background: #ffffff;
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.auth-card-verify {
    max-width: 560px;
}

.auth-title {
    font-size: 32px;
    font-weight: 700;
    color: #0b3d91;
    text-align: center;
    margin-bottom: 16px;
}

.auth-subtitle {
    font-size: 15px;
    color: #444;
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.5;
}

.auth-form {
    margin-top: 24px;
}

.auth-code-wrap {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}

.code-box {
    width: 56px;
    height: 60px;
    border: 1px solid #cfd8e3;
    border-radius: 14px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    outline: none;
    transition: 0.2s ease;
}

.code-box:focus {
    border-color: #0d57b7;
    box-shadow: 0 0 0 3px rgba(13, 87, 183, 0.12);
}

.auth-error {
    display: block;
    min-height: 22px;
    text-align: center;
    font-size: 14px;
    margin-bottom: 14px;
    color: #d93025;
}

.auth-error.is-success {
    color: #198754;
}

.auth-error.is-error {
    color: #d93025;
}

.auth-btn {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 14px;
    background: #0d57b7;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.auth-btn:hover {
    background: #004aad;
}

.auth-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.auth-resend {
    margin-top: 16px;
    text-align: center;
    font-size: 14px;
    color: #555;
}

.auth-link-btn {
    border: none;
    background: transparent;
    color: #0d57b7;
    font-weight: 600;
    cursor: pointer;
    margin-right: 8px;
}

.auth-link-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.auth-links {
    margin-top: 18px;
    text-align: center;
    font-size: 14px;
}

.auth-links a {
    color: #0d57b7;
    text-decoration: none;
    font-weight: 600;
}

#codeWrap.is-error .code-box {
    border-color: #d93025;
}

#codeWrap.is-success .code-box {
    border-color: #198754;
}

.shake {
    animation: shakeX 0.35s;
}

@keyframes shakeX {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

@media (max-width: 640px) {
    .auth-card {
        padding: 28px 18px;
        border-radius: 18px;
    }

    .auth-code-wrap {
        gap: 8px;
    }

    .code-box {
        width: 44px;
        height: 52px;
        font-size: 20px;
    }
}

.auth-actions,
.validMessage-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 10px;
}

.auth-btn,
.validMessage-btn,
.auth-secondary-link,
.validMessage-link {
    width: 100%;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.auth-secondary-link,
.validMessage-link {
    text-decoration: none;
    background: #5b9df6;
    color: #ffffff;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.auth-secondary-link:hover,
.validMessage-link:hover {
    background: #4a8eea;
    color: #ffffff;
    transform: translateY(-1px);
}