:root {
    --orange: #ff7a00;
    --black: #0b0610;
    --muted: #9c9c9c;
    --input-bg: #fbfdff;
    --border: #bcbcbc;
}

* {
    box-sizing: border-box
}

/* =========================
   Fonts
========================= */
@font-face {
    font-family: 'BebasNeue';
    src: url('fonts/BebasNeue-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'BebasNeue';
    src: url('fonts/BebasNeue-Book.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'BebasNeue';
    src: url('fonts/BebasNeue-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'BebasNeue';
    src: url('fonts/BebasNeue-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'BebasNeue';
    src: url('fonts/BebasNeue-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

/* =========================
   General Reset & Defaults
========================= */
body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    background: white;
    color: #111;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.qualify_mobile {
    display: none;
}

html {
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none !important;
    color: #000;
}

a:hover {
    color: #fff !important;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* =========================
   Layout
========================= */
.wrap {
    max-width: 767px;
    margin: 0 auto;
    padding: 18px 20px 60px;
}

.promo {
    background: var(--black);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-weight: 600;
    letter-spacing: 0.6px;
    font-size: 13px;
    background: #000;
}

header.brand {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding: 18px 0 6px;
}

header.brand img {
    width: 50%;
}

h1.title {
    margin: 0;
    font-weight: 500;
    font-size: 40px;
    letter-spacing: 2px;
    text-align: center;
}

.subtitle {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-top: 8px;
}

.divider {
    height: 4px;
    width: 100%;
    background: var(--orange);
    margin: 14px 0 20px;
    border-radius: 8px;
}

/* =========================
   Form & Inputs
========================= */
.card {
    border-radius: 8px;
    background: #fff;
}

.form-label {
    font-size: 15px;
    color: #222;
}

.Discount_form {
    padding: 0;
    border: none !important;
    box-shadow: none !important;
}

.form-control {
    padding: 14px 16px;
    border-radius: 8px;
    border: 2px solid #000;
    font-size: 16px;
    outline: none;
    transition: box-shadow .15s, border-color .15s;
}

.form-control:focus {
    border-color: var(--orange);
    box-shadow: 0 6px 18px rgba(255, 122, 0, 0.12);
}

/* =========================
   Discount
========================= */
.discount .label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.discount .label-row .hint {
    font-size: 13px;
    color: var(--muted);
}

/* =========================
   Secure Info
========================= */
.secure {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #000000;
    margin: 22px 0 22px;
}

/* =========================
   Button
========================= */
.cta {
    background: var(--orange);
    color: white;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 700;
    border: none;
    letter-spacing: 1.6px;
    padding: 18px 12px;
    margin-bottom: 30px;
}

.cta:active {
    transform: translateY(1px);
}

/* =========================
   Icons
========================= */
.icons-row img {
    width: 28px;
    height: auto;
}

.icon {
    font-size: 12px;
    color: #000000;
}

/* =========================
   Footer & Links
========================= */
.disclaimer {
    font-size: 12.5px;
    color: #8a8a8a;
    line-height: 1.5;
    margin-top: 18px;
    text-align: left;
    padding: 0 4px;
}

.links {
    margin-top: 20px;
    text-align: center;
    color: #000000;
    font-size: 12px;
    letter-spacing: 1px;
}

.links a {
    color: inherit;
    margin: 0 8px;
}

footer.copy {
    text-align: center;
    color: #000000;
    font-size: 14px;
    margin-top: 22px;
}

/* =========================
   Responsive
========================= */
@media (max-width: 767px) {
    h1.title {
        font-size: 30px;
    }

    .qualify_mobile {
        display: block;
    }
}