html{
    scroll-behavior: smooth;
}
html, body {
    background: #60B1E7;
    font-family: 'TT Norms Pro';
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero {
    position: relative;
}

.hero-slant {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
}

.hero-img {
    position: relative;
    z-index: 10;
    padding-top: 40px;
}

.mouse {
    width: 26px;
    height: 40px;
    border-radius: 15px;
    border: 2px solid #1E22AA;
    position: absolute;
    overflow: hidden;
    margin-top: 40px;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
}

.mouse .roll {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    margin-left: -2px;
    height: 4px;
    border-radius: 4px;
    background: #1E22AA;
    -webkit-animation: mouseScroll .8s cubic-bezier(.7, 0, .3, 1) infinite alternate;
    animation: mouseScroll .8s cubic-bezier(.7, 0, .3, 1) infinite alternate;
    z-index: 2;
}

.mouse .rollshadow {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    margin-left: -2px;
    height: 4px;
    background: #aaa;
    border-radius: 4px;
    -webkit-animation: mouseScroll .8s cubic-bezier(.7, 0, .3, 1) infinite alternate;
    animation: mouseScroll .8s cubic-bezier(.7, 0, .3, 1) infinite alternate;
    animation-delay: 0s;
    -webkit-animation-delay: 80ms;
    animation-delay: 80ms;
    z-index: 1;
}

@-webkit-keyframes mouseScroll {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        -webkit-transform: translateY(14px);
        transform: translateY(14px)
    }
}

@keyframes mouseScroll {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        -webkit-transform: translateY(14px);
        transform: translateY(14px)
    }
}

h2 {
    font-size: 42px;
    color: #D50032;
    font-weight: 600;
    text-align: center;
    margin-bottom: 24px;
    margin-top: 50px;
}

h3 {
    font-size: 32px;
    color: #1E22AA;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 50px;
}

.form-label {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: #1E22AA
}

.form-control {
    height: 64px;
    border-radius: 10px;
    border-width: 2px;
    border-color: #fff;
    font-size: 24px;
    line-height: 32px;
    color: #1E22AA;
}

.form-control:focus {
    border-color: #1E22AA;
    box-shadow: none;
}

button[type="submit"] {
    background: #D50032;
    height: 72px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 28px;
    padding: 0 80px;
    margin: 0 auto;
    display: block;
    border: 0;
}

.form-check {
    font-size: 18px;
    color: #1E22AA;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Adjust gap as needed */
    cursor: pointer;
    user-select: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.form-check-input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    cursor: pointer;
}

.checkbox {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px; /* Space between checkbox and text */
}

.checkbox .checkmark {
    display: block;
    position: relative;
    width: 42px;
    height: 42px;
    background: white;
    border-radius: 10px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.checkbox:hover .checkmark {
    transition: all 0.2s ease;
}

.form-check-input:checked ~ .checkbox .checkmark {
    background: #fff;
    color: #1E22AA;
}

.checkbox .checkmark::after {
    position: absolute;
    content: "";
    left: 50%;
    top: 45%;
    width: 10px;
    height: 20px;
    border: solid #1E22AA;
    border-width: 0 4px 4px 0;
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0;
    transition: all 0.2s ease;
}

.form-check-input:checked ~ .checkbox .checkmark::after {
    opacity: 1;
    transition: all 0.2s ease;
}


.info p {
    font-size: 24px;
    color: #1E22AA;
}

.winners ul {
    font-size: 32px;
    font-weight: 500;
    color: #1E22AA;
}

.texts p {
    font-size: 24px;
    line-height: 32px;
    color: #1E22AA;
    margin-bottom: 24px;
}

.footer {
    min-height: 23vw;
    position: relative;
}

.white-slant {
    top: 0;
    left: 0;
    width: 100%;
    position: absolute;
}

.footer-content {
    background: #fff;
    position: absolute;
    top: 22vw;
    min-height: 1vw;
    width: 100%;
}

.tomlogo {
    position: absolute;
    right: 0;
    bottom: 0;
    margin-top: -6vw;
    margin-bottom: 2vw;
}

.text.rules p, .text.rules ul li {
    font-size: 22px;
    line-height: 30px;
    color: #1E22AA;
}

.last-p{
    padding-bottom: 150px;
}


.invalid-feedback{
    font-size: 20px;
    font-weight: 600;
}

.langlink{
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    position: absolute;
    right: 0;
    top: 18px;
    color: #1E22AA;
    text-decoration: none;
    z-index: 20;
}

.checkbox a{
    color: #1E22AA;
}

.up-arrow{
    position: absolute;
    right: 0;
    bottom:200px;
    text-align: center;
    cursor: pointer;
}

.up-arrow span{
    display: block;
    color: #D50032;
    text-transform: uppercase;
    padding-top: 10px;
    font-weight: 500;
    font-size: 14px;
}

@media ( max-width: 767px){
    h2{
        font-size: 32px;
        line-height: 40px;
    }
    .form-label{
        font-size: 20px;
        line-height: 32px;
    }
    .winners ul{
        font-size: 22px;
    }
    .info p{
        font-size: 22px;
    }
    .texts p{
        font-size: 22px;
    }
    .tomlogo{
        position: relative;
        margin: 0 auto;
        margin-bottom: 30px;
        display: block;
    }
    .last-p{
        padding-bottom: 30px;
    }
    .up-arrow{
        position: relative;
        bottom:0;
        margin-bottom: 20px;
    }
    .langlink{
        right: 15px;
    }
}

.light-bold{
    font-weight: 600;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.arrow-icon.rotated {
    transform: rotate(180deg);
}

.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.spinner {
    width:24px;
    height:24px;
}

.hidden {
    display: none;
}