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;
}

/* Credit Card Landing Page */

.cc-landing-page {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f4f7fb, #e7edf7);
}

.cc-landing-card {
    width: 100%;
    max-width: 980px;
    padding: 70px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(20, 40, 70, 0.12);
}

.cc-content {
    max-width: 680px;
}

.cc-eyebrow {
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #315f9f;
}

.cc-content h1 {
    margin-bottom: 20px;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.08;
    color: #17243a;
}

.cc-tagline {
    margin-bottom: 32px;
    font-size: 1.25rem;
    color: #66717f;
}

.cc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

    .cc-actions .btn {
        min-width: 220px;
        padding: 14px 24px;
        border-radius: 10px;
    }

@media (max-width: 575.98px) {
    .cc-landing-page {
        min-height: 100vh;
        padding: 0;
    }

    .cc-landing-card {
        min-height: 100vh;
        padding: 40px 22px;
        border-radius: 0;
        box-shadow: none;
        display: flex;
        align-items: center;
    }

    .cc-actions {
        flex-direction: column;
    }

        .cc-actions .btn {
            width: 100%;
            min-width: 0;
        }
}