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%;
}

:root {
    --lp-card-white: #FFFFFF;
    --lp-card-green: #01F311;
    --lp-card-dark-green: #006425;
    --lp-card-red: #840000;
    --lp-card-navy: #002350;
    --lp-card-dark-red: #801F32;
    --lp-card-gray: #D9D9D9;
    --lp-card-black: #000000;
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100svh;
    background-size: cover;
    background-color: var(--lp-card-navy);
    font-family: system-ui, sans-serif;
}

.container {
    width: clamp(320px, 30vw, 1000px);
    margin-inline: auto;
    padding: 60px 0 15px 0;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 100%;
    gap: 30px;
}

.service-icon {
    height: 70px;
}

.secondary-icon {
    height: 90px;
}

.lp-card-main-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--lp-card-white);
    min-height: 220px;
    max-width: 400px;
    border-radius: 20px;
    padding: 20px;
}

.am-lp-hint {
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

.lp-msisdn-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: center;
    gap: 5px;
    flex: 1;
}

.am-language-control {
    background: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    margin-inline: 5px;
}

.lp-subscribe {
    background: var(--lp-card-bprog-bar-gray);
    background: lightgray;
    width: 100%;
    max-width: 300px;
    padding: 10px;
    font-size: 22px;
    border: none;
}

.lp-phone-input {
    height: 50px;
}

.service-desc-container, footer {
    width: clamp(320px, 30vw, 1000px);
    color: var(--lp-card-white);
    margin-inline: auto;
    font-size: smaller;
    padding: 10px;
}