* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    font-weight: 400;
    font-size: 14px;
    background-color: #0F0F10;
    color: #F7F7F7;
    font-family: "Inter", sans-serif;
    font-feature-settings: "ss04" 1, "ss01" 1, "cv01" 1, "cv02" 1, "cv03" 1, "cv04" 1, "cv09" 1, "cv10" 1, "cv11" 1, "cv06" 1;
    letter-spacing: -0.16px;
    background-image: url(../images/BGpeak.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    /* min-height: 100vh; */
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.LogoBox {
    text-align: center;
}

.PeakInfo h1 {
    font-size: 52px;
    line-height: 60px;
    font-weight: 700;
    text-align: center;
    color: #CCCEFF;
}

    .PeakInfo h1 .Speed {
        color: #FACC19;
        font-style: italic;
        margin-top: 8px;
        display: inline-block;
    }

.witheverytrade {
    display: block;
    font-size: 40px;
    line-height: 48px;
    font-weight: 400;
    padding-top: 8px;
}

.PeakInfo {
    width: 100%;
    padding: 0 16px;
    margin-top: 100px;
}

    .PeakInfo p.text {
        font-size: 24px;
        line-height: 28px;
        font-weight: 600;
        text-align: center;
        margin-top: 8px;
        color: #F7F7F7;
    }

.cta {
    font-size: 14px;
    color: #F7F7F7;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #014279;
    border-radius: 8px;
    border-style: solid;
    border-color: #295ABC;
    border-width: 0.5px 1px 1px 0.5px;
    padding: 10px 16px;
    font-weight: 500;
    height: 48px;
    width: 172px;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

    .cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, #FFFFFF, #FFFFFF);
        border-radius: 8px;
        opacity: 0;
        z-index: -1;
        transition: opacity 0.3s ease;
    }

    .cta::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 8px;
        border: 2px solid #548EFF;
        opacity: 0;
    }

    .cta:hover::after {
        opacity: 1;
        animation: rotateBorder 1.5s linear 1;
    }

    .cta:hover {
        box-shadow: 0 0 16px rgba(255, 255, 255, 0.3);
    }

@keyframes rotateBorder {
    0% {
        clip-path: polygon(0 0, 100% 0, 100% 2px, 0 2px);
    }

    25% {
        clip-path: polygon(calc(100% - 2px) 0, 100% 0, 100% 100%, calc(100% - 2px) 100%);
    }

    50% {
        clip-path: polygon(0 calc(100% - 2px), 100% calc(100% - 2px), 100% 100%, 0 100%);
    }

    75% {
        clip-path: polygon(0 0, 2px 0, 2px 100%, 0 100%);
    }

    100% {
        clip-path: polygon(0 0, 100% 0, 100% 2px, 0 2px);
    }
}

.PeakInfo .ctabox {
    margin-top: 32px;
    justify-content: center;
    display: flex;
}

.ScalperBGBox {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.ScalperBG {
    max-width: 100%;
    height: auto;
}

/* RegisteryourInterest */

.Registerform h2 {
    font-size: 20px;
    color: #F7F7F7;
    line-height: 8px;
    font-weight: 600;
}

.Registerform .content {
    margin-top: 24px;
}

.FormControl::placeholder {
    color: #A6A6AB;
}

.FormControl {
    width: 100%;
    margin-top: 16px;
    padding: 10px 12px;
    color: #F7F7F7;
    font-size: 14px;
    line-height: 18px;
    background-color: transparent;
    outline: none;
    border-style: solid;
    border-color: #25488D;
    border-width: 0.5px 1px 1px 0.5px;
    border-radius: 8px;
    transition: font-size 0.5s ease, border-width 0.5s ease, border-color 0.5s ease;
}

    .FormControl:focus {
        font-size: 16px;
        border-width: 1px 1.5px 1.5px 1px;
        border-color: #79A3F6;
    }

.Error,.api-error-message {
    color: #F2505A;
    font-size: 12px;
    padding-top: 4px;
    display: inline-block;
}


.Registerform .content .ctabox {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
}

.Congratulations {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 16px;
}

    .Congratulations h1 {
        font-size: 48px;
        line-height: 56px;
        font-weight: 600;
        color: #CCCEFF;
        margin-bottom: 16px;
    }

        .Congratulations h1 .Speed {
            color: #FACC19;
            font-style: italic;
        }

    .Congratulations p {
        font-size: 20px;
        line-height: 32px;
        color: #F7F7F7;
    }

        .Congratulations p span {
            display: block;
        }



/* popup */

.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(24, 39, 68, 0.50);
    backdrop-filter: blur(12px);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
}

.popup {
    margin: auto;
    padding: 24px;
    background: #08152D;
    border-radius: 16px;
    border: 0.5px solid #548EFF;
    width: 390px;
    position: relative;
    transition: all 1s ease-in-out;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
}

.overlay:target {
    visibility: visible;
    opacity: 1;
}

@media screen and (max-width: 1366px) {
    .PeakInfo {
        margin-top: 60px;
    }

    .ScalperBG {
        max-width: 67%;
    }
    .ScalperBGBox {
 margin-top: 10px;
}
}

@media screen and (max-width: 1280px) {
    .ScalperBG {
        max-width: 65%;
    }
}

@media screen and (max-width: 575px) {

    html,
    body {
        background-size: cover;
        background-position: center;
    }

    .PeakInfo h1,
    .Congratulations h1 {
        font-size: 28px;
        line-height: 38px;
    }

    .witheverytrade {
        font-size: 24px;
        line-height: 28px;
    }

    .PeakInfo p.text {
        font-size: 16px;
        line-height: 22px;
    }

    .Congratulations p {
        font-size: 14px;
        line-height: 20px;
    }

        .Congratulations p span {
            display: inline;
        }

    .popup {
        width: calc(100% - 32px);
    }

    .ScalperBGBox {
        margin-top: 28px;
    }

    .ScalperBG {
        max-width: 100%;
    }
}

