/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
}
main {
    display: block;
}
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}
pre {
    font-family: monospace, monospace;
    font-size: 1em;
}
a {
    background-color: transparent;
}
abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}
b,
strong {
    font-weight: bolder;
}
code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}
small {
    font-size: 80%;
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
}
img {
    border-style: none;
}
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}
button,
input {
    overflow: visible;
}
button,
select {
    text-transform: none;
}
button,
[type='button'],
[type='reset'],
[type='submit'] {
    -webkit-appearance: button;
}
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
    border-style: none;
    padding: 0;
}
button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
    outline: 1px dotted ButtonText;
}
fieldset {
    padding: 0.35em 0.75em 0.625em;
}
legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}
progress {
    vertical-align: baseline;
}
textarea {
    overflow: auto;
}
[type='checkbox'],
[type='radio'] {
    box-sizing: border-box;
    padding: 0;
}
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
    height: auto;
}
[type='search'] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}
[type='search']::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}
details {
    display: block;
}
summary {
    display: list-item;
}
template {
    display: none;
}
[hidden] {
    display: none;
}
* {
    box-sizing: border-box;
    font-weight: 500;
}
html {
    scroll-behavior: smooth;
    min-height: 100vh;
    background-color: #ededed;
}
#root {
    font-family: Poppins, sans-serif;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}
.pad {
    padding: 0 40px;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}
.lotteria-flex {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
h1,
h2 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    color: #0d0d0d;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
}
p,
a,
li,
span {
    margin: 0;
    text-decoration: none;
    color: #0d0d0d;
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.text-start {
    text-align: start;
}
.fw-500 {
    font-weight: 500;
}
.fw-700 {
    font-weight: 700;
}
.pad-top {
    padding-top: 40px;
    padding-bottom: 40px;
}
.lotteria-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 749px) {
    * {
        text-align: center;
    }
    .pad {
        padding: 0 12px;
    }
    .pad-top {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .lotteria-grid-2 {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 330px) {
    .lotteria-privacy h1,
    .lotteria-privacy h2 {
        word-break: break-all;
    }
}
.lotteria-hero {
    background: linear-gradient(to right, #a5d5ff, #ff7966);
    padding: 40px 0;
}
.lotteria-hero__body {
    display: flex;
    gap: 20px;
    align-items: center;
}
.lotteria-hero__body h1 {
    font-size: 32px;
    line-height: 38px;
}
.lotteria-hero__btn {
    display: inline-block;
    background: linear-gradient(to bottom, #9b2bc0, #02ffc0);
    box-shadow: 0 2px 4px #0000004d;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    width: fit-content;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    color: #fff;
    border: none;
}
.lotteria-hero__glare {
    opacity: 0.8;
    position: absolute;
    top: -100px;
    left: -100px;
    display: block;
    background: #fff;
    width: 40px;
    height: 300px;
    transition: all 0.1s;
    transform: rotate(45deg);
    animation-delay: 0.05s;
    animation-timing-function: ease-in-out;
    animation-name: slide;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}
@keyframes slide {
    0% {
        transform: translate(0) rotate(45deg);
    }
    30%,
    to {
        transform: translate(400px) rotate(45deg);
    }
}
.lotteria-hero__img {
    background: url('../images/main-img-CoDVGBAO.webp') center / contain
        no-repeat;
    width: 192px;
    aspect-ratio: 192 / 251;
    flex-shrink: 0;
}
.lotteria-lottos {
    display: flex;
    gap: 50px;
}
.lotteria-lottos__item {
    background-color: #a5d5ff;
    box-shadow: 0 2px 4px #0000004d;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lotteria-lottos__item img {
    width: 145px;
    height: 50px;
}
.lotteria-lottos__bubbles {
    background: url('../images/bubbles-DztSACfp.webp') center / contain
        no-repeat;
    width: 192px;
    aspect-ratio: 192 / 633;
    flex-shrink: 0;
}
@media (max-width: 1100px) {
    .lotteria-hero__body h1 {
        font-size: 24px;
        line-height: 26px;
    }
}
@media (max-width: 749px) {
    .lotteria-hero__body,
    .lotteria-hero__text {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .lotteria-hero__body h1 {
        font-size: 20px;
        line-height: 24px;
        text-align: center;
    }
    .lotteria-hero__body p {
        font-size: 14px;
        line-height: 16px;
        text-align: center;
    }
    .lotteria-hero__btn {
        font-size: 14px;
        line-height: 16px;
        align-self: center;
    }
    .lotteria-hero__img {
        width: 100%;
        max-width: 192px;
    }
    .lotteria-lottos {
        flex-direction: column;
    }
    .lotteria-lottos__bubbles {
        background: url('../images/bubbles-DztSACfp.webp') center / contain
            no-repeat;
        width: 100%;
        max-width: 500px;
        aspect-ratio: 336 / 102;
        align-self: center;
    }
    .lotteria-lottos__item img {
        align-self: center;
    }
}
.lotteria-header {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.lotteria-header__logo {
    display: flex;
    background: url('../images/logo-DGZc5evc.svg') center / contain no-repeat;
    align-items: center;
    width: 208px;
    height: 30px;
}
.lotteria-footer {
    background: #191919;
    padding: 15px 0;
}
.lotteria-footer p {
    color: #fff;
}
.lotteria-footer .lotteria-footer__header {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    color: #a5d5ff;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
}
.lotteria-footer__logos {
    display: flex;
    gap: 100px;
    align-items: center;
    justify-content: center;
}
.lotteria-footer__policy {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 10px;
}
.lotteria-footer__policy a {
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
}
@media (max-width: 1100px) {
    .lotteria-footer__logos {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
    }
}
@media (max-width: 749px) {
    .lotteria-footer__logos img {
        width: 100%;
    }
    .lotteria-footer__logos {
        gap: 30px;
        flex-wrap: wrap;
        row-gap: 20px;
    }
    .lotteria-footer p {
        text-align: start;
    }
}
.lotteria-login {
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
    align-items: center;
    background: linear-gradient(to right, #a5d5ff, #ff7966);
    padding: 20px;
    border-radius: 10px;
}
.lotteria-form__input {
    width: 100%;
    height: 41px;
    background-color: #ededed;
    border-radius: 10px;
    padding: 0 10px;
    color: #131313;
    border: none;
}
.lotteria-form__input::placeholder {
    color: #898888;
    text-transform: uppercase;
}
.lotteria-form__input:focus {
    outline: none;
}
.lotteria-form__bottom {
    display: flex;
    gap: 10px;
}
.lotteria-form__switch-btn {
    background: transparent;
    border: none;
    color: #c0392b;
    font-weight: 700;
    cursor: pointer;
}
.lotteria-form__send-text {
    text-align: center;
    font-size: 12px;
    line-height: 14px;
}
