html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

/* ================= GLOBAL ================= */
html, body {
    height: 100%;
    margin: 0;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}



/* ================= HEADER ================= */
.axx-header {
    height: 220px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.axx-header-overlay {
    text-align: center;
    color: white;
    backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, 0.35);
    padding: 20px 40px;
    border-radius: 12px;
}

    .axx-header-overlay h1 {
        margin: 0;
        font-size: 2rem;
        font-weight: 600;
    }

    .axx-header-overlay p {
        margin: 5px 0 0;
        opacity: 0.8;
    }


/* ================= BODY ================= */
.axx-body {
    width: 100%;
    max-width: 450px;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.axx-auth-wrapper {
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    padding: 20px;
}


/* ================= FOOTER ================= */
.axx-footer {
    height: 140px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.axx-footer-overlay {
    color: white;
    background: rgba(0,0,0,0.4);
    padding: 10px 20px;
    border-radius: 8px;
}


  

