body{
    margin:0;
    padding:0;
    background:#f4f6f9;
    font-family:Arial,sans-serif;
}

.container{
    width:100%;
    max-width:500px;
    margin:50px auto;
    background:#fff;
    padding:30px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

h1,h2{
    margin-bottom:25px;
    color:#00843d;
}

label{
    display:block;
    margin-bottom:8px;
    font-weight:bold;
    color:#333;
}

input,
textarea,
select{
    width:100%;
    padding:12px;
    border:1px solid #ccc;
    border-radius:8px;
    margin-bottom:20px;
    box-sizing:border-box;
    font-size:14px;
}

textarea{
    min-height:120px;
    resize:vertical;
}

button{
    background:#00843d;
    color:#fff;
    border:none;
    padding:14px 24px;
    border-radius:999px;
    font-size:15px;
    font-weight:bold;
    cursor:pointer;
}

button:hover{
    background:#006f33;
}

a{
    color:#00843d;
    text-decoration:none;
}

.ticket-box{
    background:#f9fafb;
    border-left:5px solid #00843d;
    padding:20px;
    border-radius:10px;
    margin-top:20px;
}

.status{
    display:inline-block;
    padding:8px 14px;
    border-radius:999px;
    background:#00843d;
    color:#fff;
    font-size:13px;
    font-weight:bold;
}