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;
}


.coming-soon {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f5f9ff, #eef4ff);
}

    .coming-soon h1 {
        font-size: 70px;
        font-weight: 800;
        color: #8B1538;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 2px;
        animation: fadeUp 0.8s ease;
    }

    .coming-soon p {
        font-size: 20px;
        color: #555;
        max-width: 600px;
        line-height: 1.7;
        animation: fadeUp 1s ease;
    }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .coming-soon h1 {
        font-size: 45px;
    }

    .coming-soon p {
        font-size: 17px;
    }
}

.coming-soon i {
    font-size: 80px;
    color: #8B1538;
    margin-bottom: 20px;
}