/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

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

body{
    font-family:'Poppins',sans-serif;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(135deg,#ffb703,#ff7b00);
    padding:20px;
    overflow:hidden;
}

/* Decorative Background */
body::before,
body::after{
    content:"";
    position:absolute;
    border-radius:50%;
    filter:blur(70px);
    opacity:.35;
}

body::before{
    width:280px;
    height:280px;
    background:#fff;
    top:-100px;
    left:-80px;
}

body::after{
    width:320px;
    height:320px;
    background:#ffd166;
    bottom:-120px;
    right:-80px;
}

.container{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    z-index:2;
}

.card{
    width:100%;
    max-width:550px;
    padding:55px 35px;
    text-align:center;

    background:rgba(255,255,255,.18);
    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.3);
    border-radius:24px;

    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.logo{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:45px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

h1{
    margin-top:25px;
    font-size:3rem;
    color:white;
    font-weight:700;
}

.badge{
    display:inline-block;
    margin-top:18px;
    padding:10px 22px;
    background:white;
    color:#ff7b00;
    border-radius:50px;
    font-weight:600;
    font-size:.9rem;
}

.card p{
    margin-top:25px;
    color:white;
    font-size:1.05rem;
    line-height:1.8;
}

h2{
    margin-top:35px;
    color:white;
    font-size:1.6rem;
}

.small{
    font-size:.95rem;
    opacity:.9;
}

/* Responsive */

@media (max-width:600px){

    .card{
        padding:40px 25px;
    }

    h1{
        font-size:2.2rem;
    }

    h2{
        font-size:1.3rem;
    }

    .card p{
        font-size:.95rem;
    }

    .logo{
        width:75px;
        height:75px;
        font-size:38px;
    }
}