
body{
    font-family:Arial, sans-serif;
    background:#f5f8ff;
}

.success-page{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px;
    background:
    linear-gradient(
    135deg,
    #071B52 0%,
    #0B2A7A 100%
    );
}

.success-card{
    background:#fff;
    max-width:850px;
    width:100%;
    text-align:center;
    padding:182px;
    border-radius:30px;
    box-shadow:
    0 25px 80px rgba(0,0,0,.15);
}

.badge{
    display:inline-block;
    background:#eef7ff;
    color:#0B2A7A;
    padding:10px 20px;
    border-radius:50px;
    margin-bottom:25px;
    font-weight:600;
}

.success-card h1{
    font-size:58px;
    color:#071B52;
    margin-bottom:15px;
}

.success-card h3{
    color:#28a745;
    margin-bottom:25px;
}

.description{
    color:#555;
    line-height:1.9;
    font-size:17px;
    margin-bottom:35px;
}

.next-steps{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:35px;
}

.step{
    background:#f8fafc;
    padding:15px;
    border-radius:12px;
    font-weight:600;
}

.home-btn{
    display:inline-block;
    text-decoration:none;
    background:
    linear-gradient(
    90deg,
    #ff6b00,
    #ff8f00
    );

    color:#fff;
    padding:16px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.home-btn:hover{
    transform:translateY(-2px);
    color:#fff;
}

.redirect-text{
    margin-top:25px;
    color:#777;
}

#countdown{
    color:#ff6b00;
    font-weight:700;
}

/* SUCCESS TICK */

.success-checkmark{
    margin:0 auto 30px;
}

.check-icon{
    width:120px;
    height:120px;
    border-radius:50%;
    border:6px solid #28a745;
    margin:auto;
    position:relative;
    animation:pop .5s ease;
}

.line-tip{
    position:absolute;
    width:30px;
    height:6px;
    background:#28a745;
    top:65px;
    left:22px;
    transform:rotate(45deg);
    animation:drawTip .5s ease;
}

.line-long{
    position:absolute;
    width:60px;
    height:6px;
    background:#28a745;
    top:56px;
    left:38px;
    transform:rotate(-45deg);
    animation:drawLong .8s ease;
}

@keyframes pop{
    from{
        transform:scale(.5);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

@keyframes drawTip{
    from{
        width:0;
    }
    to{
        width:30px;
    }
}

@keyframes drawLong{
    from{
        width:0;
    }
    to{
        width:60px;
    }
}

@media(max-width:768px){

.success-card{
    padding:35px 25px;
}

.success-card h1{
    font-size:42px;
}

.next-steps{
    grid-template-columns:1fr;
}

}
