/* ================= RESET ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}


body{

    background:#0b1220;

    color:#e5e7eb;

    min-height:100vh;

}



/* ================= NAV ================= */


.legal-nav{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:#0f172a;

    padding:18px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    z-index:1000;

    border-bottom:1px solid #1e293b;

}



.legal-nav a{

    color:#cbd5e1;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;

}



.legal-nav a:hover{

    color:#22c55e;

}





/* ================= PAGE CONTAINER ================= */


.container{


    max-width:900px;

    margin:0 auto;

    padding:120px 25px 50px;

    background:#111827;

    min-height:100vh;

    border-radius:20px;


    box-shadow:

    0 15px 40px rgba(0,0,0,.5);


}





/* ================= HEADINGS ================= */


.container h1{


    text-align:center;

    font-size:36px;

    margin-bottom:15px;

    color:white;


}



.container h2{


    margin-top:35px;

    margin-bottom:12px;

    color:#38bdf8;

    font-size:22px;


}



.container p{


    color:#cbd5e1;

    line-height:1.8;

    margin-bottom:15px;


}



.container ul{


    margin-left:25px;

    color:#cbd5e1;

    line-height:1.8;


}



.container li{

    margin-bottom:8px;

}





/* ================= EFFECT ================= */


.fade{


    animation:fadeIn .8s ease;

}



@keyframes fadeIn{


from{

opacity:0;

transform:translateY(20px);

}


to{

opacity:1;

transform:translateY(0);

}


}





/* ================= BUTTONS ================= */


button,
.legal-btn{


    margin-top:25px;

    padding:14px 25px;

    border:none;

    border-radius:12px;

    background:#22c55e;

    color:white;

    font-size:16px;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;


}



button:hover,
.legal-btn:hover{


    background:#16a34a;

    transform:translateY(-3px);


}





/* ================= INPUTS ================= */


input,
textarea,
select{


    width:100%;

    padding:13px;

    margin:10px 0;

    border-radius:10px;

    border:1px solid #334155;

    background:#0f172a;

    color:white;

    font-size:15px;


}



textarea{

    min-height:120px;

    resize:vertical;

}





/* ================= SIGN BOX ================= */


#signBox{


    margin-top:30px;

    padding:25px;

    background:#0f172a;

    border-radius:15px;

    border:1px solid #334155;


}




canvas{


    width:100%;

    max-width:400px;

    height:150px;

    background:white;

    border-radius:10px;

    margin:15px 0;

}





/* ================= FOOTER ================= */


.legal-footer{


    background:#020617;

    padding:25px;

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:20px;

    border-top:1px solid #1e293b;


}



.legal-footer a{


    color:#94a3b8;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;


}



.legal-footer a:hover{


    color:#22c55e;


}





/* ================= MOBILE ================= */


@media(max-width:768px){


.container{


    margin:20px;

    padding:100px 20px 40px;


}



.container h1{

    font-size:28px;

}



.container h2{

    font-size:20px;

}



.legal-footer{


    flex-direction:column;

    align-items:center;


}


}
/*  */
/* ================= COMPLETION PAGE ================= */

.completion-page {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.completion-card {
    background: #fff;
    padding: 25px;
    width: 420px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.completion-card h1 {
    text-align: center;
    margin-bottom: 10px;
}

.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
}

/* Inputs */
.input {
    width: 100%;
    padding: 10px;
    margin: 6px 0 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.textarea {
    min-height: 90px;
    resize: vertical;
}

/* Button */
.completion-btn {
    width: 100%;
    padding: 12px;
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.completion-btn:hover {
    background: #218838;
}

/* Mobile */
@media(max-width:500px){
    .completion-card {
        width: 100%;
    }
}