*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}


body{

    background:#f4fff7;
    color:#333;

}



.hero{

    min-height:100vh;
    display:flex;
    align-items:center;
    padding:60px 0;

}




.register-card{

    background:#ffffff;

    padding:40px;

    border-radius:25px;

    box-shadow:0 15px 40px rgba(0,0,0,0.08);

}




.logo{

    width:180px;

    height:auto;

}




.register-card h2{

    color:#216b2a;

    font-size:28px;

    font-weight:700;

    margin-bottom:10px;

}




.register-card p{

    color:#666;

    margin-bottom:25px;

}





.form-control{

    height:52px;

    margin-bottom:15px;

    border-radius:12px;

    border:1px solid #ddd;

    padding:12px 15px;

}





textarea.form-control{

    height:auto;

    resize:none;

}





.form-control:focus{

    border-color:#4caf50;

    box-shadow:0 0 0 0.15rem rgba(76,175,80,.25);

}





.btn-success{

    background:#2e7d32;

    border:none;

    padding:15px;

    border-radius:12px;

    font-size:17px;

    font-weight:600;

}




.btn-success:hover{

    background:#1b5e20;

}





h1{

    font-size:45px;

    line-height:1.2;

    font-weight:800;

    color:#1b5e20;

    margin-bottom:20px;

}




.lead{

    font-size:20px;

    line-height:1.8;

    color:#555;

}




.features{

    margin-top:35px;

}





.feature-item{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:20px;

    font-size:18px;

    font-weight:500;

}





.feature-item i{

    width:50px;

    height:50px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#e8f5e9;

    color:#2e7d32;

    font-size:22px;

}





#successPopup{

    display:none;

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.5);

    align-items:center;

    justify-content:center;

    z-index:9999;

}





.popup-box{

    background:white;

    padding:40px;

    border-radius:20px;

    text-align:center;

    max-width:400px;

}





.popup-box h2{

    color:#2e7d32;

}





@media(max-width:991px){


.hero{

    padding:30px 15px;

}



h1{

    font-size:36px;

    margin-top:40px;

}


.register-card{

    padding:25px;

}


}

#successPopup{
display:none;
position:fixed;
inset:0;
background:rgba(0,0,0,0.6);
align-items:center;
justify-content:center;
z-index:9999;
}