html {
    font-size: 14px;
}

html, body {
  height: 100%;
  margin: 0;
  overflow-x: hidden;
}

body.background-body {
    background:
        linear-gradient(rgba(15,32,39,0.6), rgba(44,83,100,0.6)),
        url('../img/landing/background_1920.jpg') no-repeat center center fixed;
    background-size: cover;
}

body, h1, h2, h3, p, a, button, input, label {
  font-family: 'Rubik', sans-serif;
}

.auth-wrapper {
    min-height: 100vh;
    padding: 1rem;
}
.auth-card {
    background: #fff;
    border-radius: 1.5rem;
    max-width: 420px;
    width: 100%;
    padding: 2rem;
    animation: fadeIn 0.6s ease-out;
    backdrop-filter: blur(8px);
}
.logo-img {
    max-width: 220px;
}
.nav-pills .nav-link {
    border-radius: 50rem;
    font-weight: 500;
}
.nav-pills .nav-link.active {
    background: #198754;
}
.form-floating > label {
    padding-left: 1rem;
    color: #555;
}

.form-floating input.form-control {
    background-color: #f8f9fa; /* gris claro, neutral */
    color: #212529;             /* texto legible */
}
.form-floating input.form-control:focus {
    background-color: #fff;     /* opcional: fondo blanco al focus */
    color: #212529;
}
.form-floating input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #fff inset; /* neutraliza azul autofill */
    -webkit-text-fill-color: #212529;
}

.btn {
    border-radius: 50rem;
    padding: 0.75rem 1rem;
}
@keyframes fadeIn {
    from {opacity:0; transform:translateY(20px);}
    to {opacity:1; transform:translateY(0);}
}

