*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#020312;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
}

.form-wrapper{
    background:#12141c;
    padding:40px 35px;
    border-radius:12px;
    width:90%;
    max-width:500px;
    box-shadow:0 0 20px rgba(0,0,0,0.4);
}

form h2{
    color:#eb4a4a;
    text-align:center;
    margin-bottom:25px;
}

.input-group{
    margin-bottom:18px;
}

label{
    color:#fff;
    font-size:14px;
    margin-bottom:6px;
    display:block;
}

input, textarea{
    width:100%;
    padding:12px;
    border:none;
    border-radius:6px;
    outline:none;
}

button{
    width:100%;
    padding:14px;
    border:none;
    border-radius:6px;
    background:#eb4a4a;
    color:#fff;
    font-size:16px;
    cursor:pointer;
}

button:hover{
    background:#ff6b6b;
}

#formStatus{
    margin-top:15px;
    text-align:center;
    color:#fff;
    font-size:14px;
}
