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%;
}

body {
  margin-bottom: 60px;
}

.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;
}
.whatsapp-float i {
    font-size: 48px;
    color: #25D366;
}
.social-float i {
    font-size: 48px;
    color: #E1306C;
}
.maintenance-card {
    width: 18rem;
    border-radius: 22px;
    background: #fff;
}

/* Logo circle */
.avatar-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,.1);
}

    .avatar-wrapper img {
        max-width: 70%;
        max-height: 70%;
    }

/* Social buttons */
.social-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    text-decoration: none;
    transition: all .3s ease;
}

    .social-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(0,0,0,.25);
    }

    /* WhatsApp */
    .social-btn.whatsapp {
        background: #25D366;
    }

    /* Instagram gradient */
    .social-btn.instagram {
        background: linear-gradient(45deg, #405DE6, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #FCAF45 );
    }
