:root {
    --pink: #FF0063;
    --yellow: #ffe000;
}

@font-face {
    font-family: 'GtSuper-Super-Bold';
    src: url('./police/GT-Super-Display-Super-Trial.otf') format('opentype')
}

@font-face {
    font-family: 'GtSuper-Bold-important';
    src: url('./police/GT-Super-Display-Bold-Trial.otf') format('opentype')
}

@font-face {
    font-family: 'GtSuper-medium';
    src: url('./police/GT-Super-Display-Medium.woff2') format('woff2')
}

@font-face {
    font-family: 'GtSuper-bold';
    src: url('./police/GT-Super-Display-Bold.woff2') format('woff2')
}

@font-face {
    font-family: 'GtSuper';
    src: url('./police/GT-Super-Display-Regular-Trial.otf') format('opentype')
}

@font-face {
    font-family: 'GtSuper-Light';
    src: url('./police/GT-Super-Display-Light-Trial.otf') format('opentype')
}

@font-face {
    font-family: 'myriad-regular';
    src: url('./police/MYRIADPRO-REGULAR.woff') format('woff')
}

@font-face {
    font-family: 'myriad-semibold';
    src: url('./police/MYRIADPRO-SEMIBOLD.woff') format('woff')
}

@font-face {
    font-family: 'myriad-bold';
    src: url('./police/MYRIADPRO-BOLD.woff') format('woff')
}

body {
    font-family: 'myriad-regular';
    background-color: #f0f0f0;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 100px;
    display: flex;
    justify-content: space-around;
    margin-bottom: 100px;
}

.logo {
    position: absolute;
    top: 30px;
    left: 50%;
    width: 200px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.logo img {
    width: 100%;
}

.content {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.steps {
    width: 35%;
    height: max-content;
}

h1 {
    font-family: 'GtSuper-bold';
    color: black;
    font-size: 2.5em;
    margin-bottom: 20px;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
}

.cta, .whatsapp-button {
    font-family: 'myriad-semibold';
    color: black;
    text-decoration: none;
    white-space: nowrap;
    width: 100%;
    font-size: 12pt;
    border-radius: 20px;
    padding: 15px;
    cursor: pointer;
    text-align: center;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.cta {
    background-color: var(--yellow);
    border: 2px solid var(--yellow);
}

.whatsapp-button {
    background-color: #25d366;
    border: 2px solid #25d366;
    color: white;
    margin-top: 15px;
}

.terms {
    display: block;
    margin-top: 15px;
    color: #0066cc;
    text-decoration: none;
}

.promo-image {
    width: 100%;
    margin-top: 20px;
    border-radius: 10px;
}

.steps {
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.step {
    margin-bottom: 20px;
}

.icon {
    font-size: 2em;
    margin-bottom: 10px;
}

h2 {
    font-family: 'GtSuper-bold';
    color: var(--pink);
    font-size: 1.5em;
    margin-bottom: 10px;
}

strong {
    font-weight: bold;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .content, .steps {
        margin-left: 20px;
        margin-right: 20px
    }

    .content {
        width: calc(100% - 40px);
    }

    .steps {
        width: calc(100% - 80px);
    }
}

.form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
}

.form.conjured_link_box {
    margin-top:0;
}

.form label {
    font-size: 15pt;
}

.form input {
    width: calc(100% - 32px);
    padding: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 20px;
    border: 1px solid #ccc;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.error-message {
    margin-bottom: 15px;
}

.steps p {
    text-align: left;
}

.divider {
    height: 1px;
    width: 100%;
    background-color: #ccc;
    margin: 20px 0;
}

.label {
    font-family: 'myriad-semibold';
    font-size: 15pt;
}

.cgv {
    font-size: 10pt;
    margin: 10px 0 0 0;
}

.illustration {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.conjured_link_box {
    display: none;
}

.input-copy {
    position: relative;
}

.conjured_link_copy {
    font-size: 10pt;
    position: absolute;
    top: 0;
    border: 1px solid #ccc;
    right: 0;
    margin: 15px 0;
    padding: 15px 20px;
    background-color: var(--yellow);
    border-radius: 20px;
    cursor: pointer;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}