/* ==========================
   GENERAL
========================== */

*{
    margin:0;
    padding:0px;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#fefefe;
    color:#222;
}

.container{
    width:92%;
    max-width:500px;
    margin:25px auto;
}

/* ==========================
   TOP BAR
========================== */

.top-bar{
    background:#233d6b;
    color:#fff;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    box-shadow:0 3px 10px rgba(0,0,0,.15);
}

.top-bar h1{
    font-size:34px;
    font-weight:700;
}

.back-btn{
    position:absolute;
    left:20px;
    font-size:28px;
    cursor:pointer;
}

.logo-container{
    text-align:center;
    margin:30px 0 20px;
}

.logo-container img{
    width:120px;
    max-width:80%;
    height:auto;
}

/* ==========================
   SUCCESS CARD
========================== */

.success-card{
    background:#6cb15f;
    border-radius:25px;
    padding:45px 25px;
    text-align:center;
    color:white;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
    margin-bottom:30px;
}

.badge{
    width: 95px;
    height: 95px;
    background:#fff;
    color:#55b748;
    margin:auto;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:50px;
    margin-bottom:0 auto 25px;
    

   
    
}

.success-card h2{
    font-size:42px;
    margin: 5px;
    
}

.success-card p{
    font-size:24px;
    margin-bottom:30px;
}

.reference{
    display:inline-block;
    background:rgba(255,255,255,.18);
    padding:14px 28px;
    border-radius:40px;
    font-size:22px;
    font-weight:bold;
}

/* ==========================
   CARDS
========================== */

.card{
    background: whitesmoke ;
    border-radius:22px;
    margin-bottom:25px;
    overflow:hidden;
    box-shadow:0 6px 15px rgba(0,0,0,.08);
    padding-bottom:20px;
}

.card-title{
    padding:22px;
    border-bottom:1px solid #ececec;
    display:flex;
    align-items:center;
    gap: 20px;
}

.card-title i{
    color:#3575e2;
    font-size:28px;
}

.card-title.green i{
    color:#43a047;
}

.card-title.orange i{
    color:#ff8a00;
}

.card-title h3{
    font-size:30px;
}

.info{
    padding: 5px;
}

.row{
    display:grid;
grid-template-columns: 1fr 1fr;
   gap: 10px;
    align-items:center;
    padding: 10px;
    border-bottom:1px solid #f2f2f2;
}

.row:last-child{
    border:none;
}

.row span{
    color:#777;
    font: size 18px;
    text-align: left;
    margin-right: 5px;
}

.row strong{
    font-size: 18px;
    color:#222;
    text-align: left;

    
}
.normal{
    font-weight: normal;
}


/* ==========================
   NOTICE
========================== */

.notice{
    margin:20px;
    background:#fff8df;
    border:2px solid #f5c84b;
    color:#dd8a00;
    border-radius:15px;
    padding:18px;
    display:flex;
    align-items:center;
    gap:12px;
    font-size:19px;
}

.notice i{
    font-size:22px;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:600px){
    
}

.top-bar h1{
    font-size:26px;
}

.success-card h2{
    font-size:34px;
}

.success-card p{
    font-size:20px;
}

.card-title h3{
    font-size: 24px;
}
.row span,
.row strong{
    font-size:18px;
}

.reference{
    font-size:18px;
}
footer{
    text-align:center;
    margin-top:40px;
    padding:20px;
    color:#555;
    font-size:16px;
}

footer p:first-child{
    font-weight:bold;
    font-size:18px;
    margin-bottom:5px;
}



