*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:#0b0b0b;
    color:#ffffff;
    margin:0;
    font-family:Arial,sans-serif;
}

header{
    background:#0d6efd;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
}

.logo img{
    height:60px;
}

nav a{
    color:#fff;
    text-decoration:none;
    margin-left:20px;
    font-weight:bold;
}

nav a:hover{
    color:#ffd700;
}

.hero{
    height:90vh;
    background:linear-gradient(135deg,#0d6efd,#111);
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero h1{
    font-size:50px;
    margin-bottom:15px;
}

.hero p{
    font-size:20px;
    margin-bottom:25px;
}

.btn{
    background:#fff;
    color:#0d6efd;
    padding:14px 30px;
    border-radius:8px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.btn:hover{
    background:#ffd700;
    color:#111;
}

footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:20px;
}
.services{
    padding:60px 20px;
    text-align:center;
}

.services h2{
    color:#0d6efd;
    margin-bottom:30px;
}

.service-box{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.card{
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}
.whatsapp{
    position:fixed;
    bottom:20px;
    right:20px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:30px;
    box-shadow:0 4px 10px rgba(0,0,0,.3);
    transition:.3s;
}

.whatsapp:hover{
    transform:scale(1.1);
}
@media (max-width: 768px) {
  .container {
    width: 90%;
  }

  nav ul {
    flex-direction: column;
    text-align: center;
  }

  .services {
    display: block;
  }
}
@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  .container {
    width: 90%;
    margin: auto;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin: 10px 0;
  }

  .services {
    display: block;
  }

  .service-box {
    width: 90%;
    margin: 15px auto;
  }

  img {
    max-width: 100%;
    height: auto;
  }

}
@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  .container {
    width: 90%;
    margin: auto;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  h1, h2, h3 {
    text-align: center;
  }

  p {
    font-size: 16px;
  }

  button, a {
    max-width: 100%;
  }

}
header{
    background:#111111;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
    position:sticky;
    top:0;
    z-index:999;
}

.logo img{
    width:70px;
}

nav a{
    color:#fff;
    text-decoration:none;
    margin-left:20px;
    font-weight:bold;
    transition:.3s;
}

nav a:hover{
    color:#ffd700;
}

.hero{
    height:90vh;
    background:linear-gradient(135deg,#000000,#1c1c1c);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:#ffffff;
    text-align:center;
}

.hero h1{
    font-size:55px;
    margin-bottom:15px;
}

.hero p{
    font-size:22px;
    margin-bottom:25px;
}

.btn{
    background:#00c853;
    color:#ffffff;
    padding:15px 35px;
    border-radius:8px;
    text-decoration:none;
    font-weight:bold;
}

.btn:hover{
    background:#00e676;
}

.btn:hover{
    background:#ffd700;
    color:#111;
}
.services,
.pricing{
    padding:70px 20px;
    text-align:center;
    background:#0b0b0b;
}

.services h2,
.pricing h2{
    color:#00e676;
    margin-bottom:30px;
    font-size:36px;
}

.service-box{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:#1b1b1b;
    color:#fff;
    padding:30px;
    border-radius:15px;
    border:1px solid #333;
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
    border-color:#00e676;
    box-shadow:0 0 20px rgba(0,230,118,.35);
}
.about,
.contact{
    background:#111;
    color:#fff;
    text-align:center;
    padding:70px 20px;
}

.about h2,
.contact h2{
    color:#00e676;
    margin-bottom:20px;
}
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{

background:#0d1b2a;
color:white;
display:flex;
justify-content:center;
align-items:center;
min-height:100vh;
padding:40px;
}

.hero{

max-width:1100px;
width:100%;
text-align:center;
}

.logo-box img{

width:90px;
margin-bottom:15px;
}

.hero h1{

font-size:55px;
color:#2ecc71;
margin-bottom:10px;
}

.subtitle{

font-size:22px;
color:#d0d0d0;
margin-bottom:20px;
}

.description{

max-width:800px;
margin:auto;
line-height:1.8;
font-size:17px;
color:#c5c5c5;
margin-bottom:45px;
}

.card-container{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
margin-bottom:50px;
}

.card{

background:#16293b;
padding:30px;
border-radius:18px;
border:1px solid rgba(255,255,255,.08);
transition:.3s;
}

.card:hover{

transform:translateY(-8px);
box-shadow:0 10px 30px rgba(0,255,120,.25);
}

.icon{

font-size:40px;
margin-bottom:15px;
}

.card h3{

font-size:23px;
margin-bottom:10px;
color:#ffffff;
}

.card p{

color:#bfbfbf;
line-height:1.6;
}

.mission{

margin-bottom:40px;
}

.mission h2{

color:#2ecc71;
margin-bottom:15px;
}

.mission p{

color:#d5d5d5;
line-height:1.8;
max-width:700px;
margin:auto;
}

.buttons{

display:flex;
justify-content:center;
gap:25px;
margin-top:30px;
flex-wrap:wrap;
}

.buttons a{

text-decoration:none;
padding:15px 45px;
border-radius:12px;
font-size:18px;
font-weight:bold;
transition:.3s;
}

.login-btn{

background:#27ae60;
color:white;
}

.login-btn:hover{

background:#1e8449;
}

.register-btn{

background:transparent;
color:white;
border:2px solid #27ae60;
}

.register-btn:hover{

background:#27ae60;
}

@media(max-width:768px){

.hero h1{

font-size:40px;
}

.card-container{

grid-template-columns:1fr;
}

.buttons{

flex-direction:column;
}

.buttons a{

width:100%;
}

}
/* ==========================================
   JN IT CENTER - HOME PAGE (PART 1)
   ========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#081829;
    color:#fff;
    font-family:Arial, Helvetica, sans-serif;
    overflow-x:hidden;
}

/* ================= HERO ================= */

.hero{
    width:100%;
    max-width:1200px;
    margin:40px auto;
    padding:20px;
    text-align:center;
}

/* ================= LOGO ================= */
.logo-box{
    width:190px;
    height:190px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#0d1117;
    border:2px solid rgba(46,204,113,.25);
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 0 25px rgba(0,0,0,.5);
}

.logo-box img{
    width:160px;
    height:160px;
    object-fit:contain;
    border-radius:50%;
}
/* ================= TITLE ================= */

.hero{
    max-width:1000px;
    margin:30px auto;
    padding:40px 50px;
    background:#0b0b0b;
    border-radius:20px;
    box-shadow:0 0 30px rgba(0,0,0,.4);
}

.description{
    max-width:760px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
    color:#d4d4d4;
    margin-bottom:50px;
}

/* ================= FEATURE GRID ================= */

.card-container{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

/* ================= CARD ================= */

.card{
    background:#10263c;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:35px 30px;
    transition:.35s;
}

.card:hover{
    transform:translateY(-8px);
    border-color:#27d66b;
    box-shadow:0 12px 30px rgba(39,214,107,.25);
}

.icon{
    font-size:42px;
    margin-bottom:18px;
}

.card h3{
    color:#fff;
    font-size:24px;
    margin-bottom:12px;
}

.card p{
    color:#cfcfcf;
    line-height:1.7;
    font-size:16px;
}
.topbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 20px;
background:#111;
color:#fff;
}

.logo-area{
display:flex;
align-items:center;
gap:10px;
}

.logo-area img{
width:50px;
}

.user-area{
display:flex;
align-items:center;
gap:15px;
}

#logoutBtn{
background:#ff3b30;
color:#fff;
border:none;
padding:10px 18px;
border-radius:8px;
cursor:pointer;
}

.welcome-card,
.profile-card{
background:#1b1b1b;
margin:20px;
padding:20px;
border-radius:15px;
color:#fff;
}

.welcome-card h1{
color:#00e676;
}
.wallet-card,
.notice-card{
    background:#1b1b1b;
    margin:20px;
    padding:20px;
    border-radius:15px;
    color:#fff;
}

.wallet-card h1{
    color:#00e676;
    font-size:40px;
}

.green-btn{
    background:#00c853;
    color:#fff;
    border:none;
    padding:12px 20px;
    border-radius:8px;
    cursor:pointer;
    margin-top:10px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
    gap:15px;
    margin:20px;
}

.service-item{
    background:#1b1b1b;
    color:#fff;
    padding:25px;
    border-radius:15px;
    text-align:center;
    font-size:18px;
    transition:.3s;
}

.service-item:hover{
    transform:translateY(-5px);
    border:1px solid #00e676;
}
.activity-card{
    background:#1b1b1b;
    margin:20px;
    padding:20px;
    border-radius:15px;
    color:#fff;
}

.activity-card ul{
    margin:10px 0 0;
    padding-left:20px;
}

.activity-card li{
    margin:10px 0;
}

.footer{
    text-align:center;
    color:#aaa;
    padding:20px;
    margin-top:30px;
    border-top:1px solid #333;
}
.admin-header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 20px;
background:#111;
color:#fff;
}

.admin-logo{
display:flex;
align-items:center;
gap:12px;
}

.admin-logo img{
width:55px;
height:55px;
border-radius:50%;
}

.admin-logo p{
margin:0;
color:#aaa;
font-size:14px;
}

.admin-right{
display:flex;
align-items:center;
gap:15px;
}

.logout-btn{
background:#ff3b30;
color:#fff;
border:none;
padding:10px 18px;
border-radius:8px;
cursor:pointer;
}

.admin-welcome,
.admin-profile{
background:#1b1b1b;
margin:20px;
padding:20px;
border-radius:15px;
color:#fff;
}

.admin-welcome h1{
color:#00e676;
margin-bottom:10px;
}

.online{
color:#00e676;
font-weight:bold;
}
.admin-stats{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
margin:20px;
}

.stat-card{
background:#1b1b1b;
padding:20px;
border-radius:15px;
color:#fff;
text-align:center;
}

.stat-card h1{
color:#00e676;
margin-top:10px;
font-size:32px;
}

.quick-actions{
background:#1b1b1b;
margin:20px;
padding:20px;
border-radius:15px;
color:#fff;
}

.action-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:15px;
margin-top:20px;
}

.action-grid button{
background:#00c853;
color:#fff;
border:none;
padding:15px;
border-radius:10px;
cursor:pointer;
font-size:16px;
transition:.3s;
}

.action-grid button:hover{
transform:translateY(-3px);
}
.admin-section{
display:grid;
grid-template-columns:2fr 1fr;
gap:20px;
margin:20px;
}

.user-list,
.notice-box,
.recent-log{
background:#1b1b1b;
padding:20px;
border-radius:15px;
color:#fff;
}

.user-list table{
width:100%;
border-collapse:collapse;
margin-top:15px;
}

.user-list th,
.user-list td{
padding:12px;
border-bottom:1px solid #333;
text-align:left;
}

.active-status{
color:#00e676;
font-weight:bold;
}

.notice-box textarea{
width:100%;
height:120px;
background:#111;
color:#fff;
border:1px solid #333;
border-radius:8px;
padding:10px;
margin-top:10px;
}

.notice-box button{
margin-top:15px;
background:#00c853;
color:#fff;
border:none;
padding:12px 20px;
border-radius:8px;
cursor:pointer;
}

.notice-preview{
margin-top:20px;
padding:15px;
background:#111;
border-radius:10px;
}

.recent-log ul{
padding-left:20px;
}

.recent-log li{
margin:10px 0;
}

@media(max-width:768px){
.admin-section{
grid-template-columns:1fr;
}
}
.order-box{
max-width:500px;
margin:40px auto;
background:#1b1b1b;
padding:25px;
border-radius:15px;
}

.order-box h1{
text-align:center;
color:#00e676;
margin-bottom:20px;
}

.order-box input,
.order-box select,
.order-box textarea{
width:100%;
padding:12px;
margin:10px 0;
background:#111;
color:#fff;
border:1px solid #333;
border-radius:8px;
box-sizing:border-box;
}

.order-box textarea{
height:120px;
resize:none;
}

#submitOrderBtn{
width:100%;
padding:14px;
background:#00c853;
color:#fff;
border:none;
border-radius:8px;
font-size:16px;
cursor:pointer;
}
.service-management{
background:#fff;
padding:20px;
margin:20px;
border-radius:10px;
box-shadow:0 2px 8px rgba(0,0,0,.1);
}

.service-form{
display:flex;
flex-direction:column;
gap:10px;
}

.service-form input,
.service-form textarea{
padding:10px;
font-size:16px;
}

.service-form button{
padding:10px;
cursor:pointer;
}

#serviceTable{
width:100%;
border-collapse:collapse;
margin-top:20px;
}

#serviceTable th,
#serviceTable td{
border:1px solid #ddd;
padding:10px;
text-align:left;
}
.service-management{
    width: 100%;
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
}

#serviceTable{
    width:100%;
    border-collapse:collapse;
}

#serviceTable th,
#serviceTable td{
    border:1px solid #ddd;
    padding:10px;
    text-align:center;
}

#serviceTable th{
    background:#0d6efd;
    color:#fff;
}

#serviceTable td{
    color:#000;
}

#serviceTable button{
    margin:2px;
    padding:5px 10px;
    cursor:pointer;
}
.stat-card{
    background: linear-gradient(145deg,#1e293b,#0f172a);
    padding:20px;
    border-radius:12px;
    text-align:center;
    color:white;
    box-shadow:0 4px 15px rgba(0,0,0,0.3);
    transition:0.3s;
}

.stat-card:hover{
    transform:translateY(-5px);
}
.action-grid button{
    background:#22c55e;
    border:none;
    padding:12px;
    color:white;
    border-radius:8px;
    cursor:pointer;
    transition:0.3s;
}

.action-grid button:hover{
    background:#16a34a;
}
.service-form{
    background:#111827;
    padding:20px;
    border-radius:12px;
    box-shadow:0 0 10px rgba(0,0,0,0.2);
}

.service-form input,
.service-form textarea{
    width:100%;
    margin:8px 0;
    padding:10px;
    border-radius:6px;
    border:none;
}
table{
    width:100%;
    border-collapse:collapse;
}

th{
    background:#1e293b;
    color:white;
    padding:10px;
}

td{
    padding:10px;
    background:#0f172a;
    color:white;
}
section{
    margin:20px;
}
body{
    background: linear-gradient(to right,#020617,#0f172a);
    font-family:Poppins, sans-serif;
}
#searchBox{
    width:100%;
    padding:10px;
    margin:10px 0;
    border-radius:8px;
    border:none;
}
.admin-section{
    width:320px;
    background:#171b2b;
    border-radius:15px;
    padding:20px;
    margin-top:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.35);
}

.admin-section h2{
    color:#fff;
    text-align:center;
    margin-bottom:20px;
}

.admin-section input,
.admin-section textarea{
    width:100%;
    padding:12px;
    border:none;
    border-radius:8px;
    background:#0f1320;
    color:#fff;
    margin-bottom:15px;
    box-sizing:border-box;
}

.admin-section input[type=file]{
    padding:10px;
    background:#22273b;
}

.admin-section textarea{
    height:90px;
    resize:none;
}

.admin-section button{
    width:100%;
    padding:12px;
    background:#2ecc71;
    border:none;
    border-radius:8px;
    color:#fff;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
}

.admin-section button:hover{
    background:#27ae60;
}
/* ==========================
ADD BALANCE POPUP
========================== */

.balance-popup{

position:fixed;
top:0;
left:0;
width:100%;
height:100%;

background:rgba(0,0,0,.65);

display:none;

justify-content:center;
align-items:center;

z-index:9999;

}

.balance-box{

width:420px;
max-width:95%;

background:#1c2434;

padding:30px;

border-radius:18px;

box-shadow:0 0 25px rgba(0,0,0,.4);

display:flex;
flex-direction:column;
gap:15px;

}

.balance-box h2{

color:#00e676;
margin-bottom:10px;

}

.balance-box label{

color:#fff;
font-weight:600;

}

.balance-box input,
.balance-box select{

width:100%;

padding:12px;

border:none;

border-radius:10px;

background:#101827;

color:#fff;

font-size:15px;

outline:none;

}

.popup-buttons{

display:flex;

gap:12px;

margin-top:10px;

}

.popup-buttons button{

flex:1;

}
.popup{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.6);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.popup-box{
    background:#1b2336;
    width:400px;
    padding:25px;
    border-radius:10px;
}

.popup-box input,
.popup-box select{
    width:100%;
    padding:10px;
    margin:10px 0;
}

.service-image-box{
text-align:center;
margin-bottom:20px;
}

.service-image-box img{
width:120px;
height:120px;
object-fit:cover;
border-radius:12px;
border:2px solid #22c55e;
}

window.openResetModal = function(){

    document.getElementById("resetPasswordModal").style.display="flex";

}

window.closeResetModal = function(){

    document.getElementById("resetPasswordModal").style.display="none";

}

document.getElementById("forgotPasswordBtn").onclick=function(e){

    e.preventDefault();

    openResetModal();

};

document.getElementById("sendResetBtn").onclick=async function(){

    const email=document.getElementById("resetEmail").value.trim();

    if(!email){

        alert("Enter Email");

        return;

    }

    try{

        await sendPasswordResetEmail(auth,email);

        closeResetModal();

        document.body.insertAdjacentHTML("beforeend",`

        <div id="resetPopup" style="
        position:fixed;
        inset:0;
        background:rgba(0,0,0,.6);
        display:flex;
        justify-content:center;
        align-items:center;
        z-index:99999;
        ">

            <div style="
            width:340px;
            background:#111827;
            border:2px solid #00c853;
            border-radius:15px;
            padding:25px;
            text-align:center;
            color:#fff;
            ">

                <h2 style="color:#00e676;">✅ Success</h2>

                <p>Password reset link sent to your email.</p>

                <button onclick="document.getElementById('resetPopup').remove()"
                style="
                margin-top:15px;
                padding:10px 30px;
                background:#00c853;
                color:#fff;
                border:none;
                border-radius:8px;
                cursor:pointer;
                ">
                OK
                </button>

            </div>

        </div>

        `);

    }

    catch(err){

        alert(err.message);

    }

};
/* =========================
RESET PASSWORD MODAL
========================= */

.user-modal{
    display:none;
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.7);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.user-modal-content{
    width:400px;
    max-width:90%;
    background:#111827;
    border:2px solid #00c853;
    border-radius:15px;
    padding:25px;
    text-align:center;
    color:#fff;
    position:relative;
}

.user-modal-content h2{
    color:#00e676;
    margin-bottom:10px;
}

.user-modal-content p{
    margin-bottom:15px;
}

.user-modal-content input{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:none;
    border-radius:8px;
    outline:none;
}

.user-modal-content button{
    width:100%;
    padding:12px;
    border:none;
    border-radius:8px;
    background:#00c853;
    color:#fff;
    font-size:16px;
    cursor:pointer;
}

.close-modal{
    position:absolute;
    right:15px;
    top:10px;
    font-size:28px;
    cursor:pointer;
    color:#fff;
}
/*=========================
RESET PASSWORD MODAL
=========================*/

.user-modal{

    display:none;

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.7);

    justify-content:center;

    align-items:center;

    z-index:999999;

}

.user-modal-content{

    width:380px;

    max-width:90%;

    background:#111827;

    border:2px solid #00c853;

    border-radius:15px;

    padding:25px;

    text-align:center;

    color:#fff;

    position:relative;

}

.user-modal-content h2{

    color:#00e676;

    margin-bottom:15px;

}

.user-modal-content input{

    width:100%;

    padding:12px;

    margin:15px 0;

    border:none;

    border-radius:8px;

    background:#1f2937;

    color:#fff;

}

.user-modal-content button{

    width:100%;

    padding:12px;

    border:none;

    border-radius:8px;

    background:#00c853;

    color:#fff;

    cursor:pointer;

}

.close-modal{

    position:absolute;

    right:15px;

    top:10px;

    font-size:28px;

    cursor:pointer;

}

/* SUCCESS POPUP */

.success-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999999;
    animation:fade .3s ease;
}

.success-box{
    width:380px;
    background:#111827;
    border:2px solid #00e676;
    border-radius:18px;
    padding:35px 30px;
    text-align:center;
    box-shadow:0 0 35px rgba(0,230,118,.45);
    animation:popup .35s ease;
}

.success-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:#00c853;
    color:#fff;
    font-size:50px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:bold;
}

.success-box h2{
    margin:20px 0 10px;
    color:#00e676;
    font-size:28px;
}

.success-box p{
    color:#d1d5db;
    line-height:1.6;
    margin-bottom:25px;
}

.success-box button{
    width:100%;
    padding:13px;
    border:none;
    border-radius:10px;
    background:#00c853;
    color:#fff;
    font-size:17px;
    cursor:pointer;
    transition:.3s;
}

.success-box button:hover{
    background:#00e676;
}

@keyframes popup{
    from{
        transform:scale(.7);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

@keyframes fade{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}
/* =========================
   CUSTOM SUCCESS POPUP
========================= */

.success-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.success-box{
    width:360px;
    background:#171d2b;
    border:2px solid #00ff80;
    border-radius:16px;
    text-align:center;
    padding:30px;
    color:#fff;
}

.success-icon{
    font-size:55px;
    color:#00ff80;
    margin-bottom:15px;
}

.success-box p{
    margin:15px 0;
    font-size:17px;
}

.success-box button{
    width:100%;
    padding:12px;
    border:none;
    border-radius:10px;
    background:#00c853;
    color:#fff;
    font-size:17px;
    cursor:pointer;
    transition:.3s;
}

.success-box button:hover{
    background:#00e676;
}