:root {
    --navy: #07254b;
    --navy-2: #031932;
    --gold: #d5b36c;
    --green: #00ff2f;
    --text: #08254a;
    --muted: #b9bbc2;
    --card: rgba(255, 255, 255, 0.92);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    min-height: 100%;
    font-family: "Poppins", Arial, sans-serif;
    color: var(--text);
    background: var(--navy-2);
}

body {
    display: flex;
    justify-content: center;
}

img {
    max-width: 100%;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mobile-page {
    position: relative;
    width: 100%;
    max-width: 430px;
    min-height: 100vh;
    overflow: hidden;
    background-image: url('../images/bg-mobile.jpg.jpeg');
    background-size: cover;
    background-position: center;
}

.content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    padding: 72px 28px 54px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.event-logo {
    position: relative;
    width: 180px;
    height: 230px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4px;
}

.year-mark {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 122px;
    line-height: .76;
    letter-spacing: -8px;
    color: var(--navy);
}

.trophy {
    position: relative;
    z-index: 2;
    width: 88px;
    height: 132px;
    margin-top: -8px;
    filter: drop-shadow(0 11px 10px rgba(7, 37, 75, .22));
}

.trophy svg {
    width: 100%;
    height: 100%;
    display: block;
}

.fifa-text {
    position: absolute;
    z-index: 3;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 25px;
}

.brand-logo {
    margin-top: -8px;
    font-weight: 900;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: #ff8a00;
    text-shadow:
        -3px -3px 0 var(--navy),
        3px -3px 0 var(--navy),
        -3px 3px 0 var(--navy),
        3px 3px 0 var(--navy),
        0 5px 0 rgba(7, 37, 75, .18);
}

.brand-logo span {
    color: #ffffff;
    text-shadow:
        -3px -3px 0 var(--navy),
        3px -3px 0 var(--navy),
        -3px 3px 0 var(--navy),
        3px 3px 0 var(--navy),
        0 5px 0 rgba(7, 37, 75, .18);
}

.form-card {
    width: 100%;
    padding: 28px 22px 30px;
    background: var(--card);
    border-radius: 20px;
    box-shadow: 0 16px 36px rgba(7, 37, 75, .14);
    backdrop-filter: blur(8px);
    text-align: center;
}

.green-line {
    width: 68px;
    height: 7px;
    border-radius: 999px;
    background: var(--green);
    margin: 0 auto 22px;
}

.form-card h1 {
    font-size: 27px;
    font-weight: 500;
    letter-spacing: -1px;
    margin-bottom: 28px;
}

.form-card h2 {
    font-size: 27px;
    font-weight: 500;
    letter-spacing: -1px;
}

.input-wrap {
    position: relative;
    margin-bottom: 22px;
}

.input-wrap .icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%) rotate(-18deg);
    width: 28px;
    height: 28px;
    color: var(--navy);
}

.input-wrap input {
    width: 100%;
    height: 60px;
    border: 2px solid rgba(213, 179, 108, .54);
    border-radius: 13px;
    padding: 0 18px 0 70px;
    color: var(--text);
    font-size: 16px;
    font-weight: 500;
    background: rgba(255, 255, 255, .7);
    outline: none;
    transition: .2s ease;
    margin-bottom: 1rem;
}


.input-wrap input::placeholder {
    color: #c7c8cd;
    font-weight: 400;
}

.input-wrap input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(213, 179, 108, .13);
}

.submit-btn {
    width: 100%;
    height: 66px;
    border: 0;
    border-radius: 15px;
    background: var(--navy);
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: .3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 74px;
    box-shadow: 0 10px 20px rgba(7, 37, 75, .22);
    transition: .2s ease;
}

.submit-btn:hover,
.submit-btn:focus {
    transform: translateY(-1px);
    background: #0b315f;
}

.submit-btn svg {
    width: 35px;
    height: 35px;
}

.countdown {
    margin-top: 54px;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text);
}

@media (max-width: 380px) {
    .content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .event-logo {
        transform: scale(.92);
        margin-top: -8px;
    }

    .brand-logo {
        font-size: 30px;
    }

    .form-card {
        margin-top: 48px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .form-card h1 {
        font-size: 24px;
    }

    .submit-btn {
        gap: 48px;
    }
}
