
body { margin:0; font-family:'Poppins',sans-serif; background:#F9F9F9; }
header { background: linear-gradient(135deg,#F58220 0%,#D85C00 100%); color:#fff; padding:15px 20px; text-align:center; font-size:1.5rem; }
.container { padding:20px; max-width:500px; margin:80px auto 20px auto; }
.card { background:#fff; border-radius:12px; padding:20px; margin-bottom:15px; text-align:center; box-shadow:0 6px 20px rgba(0,0,0,0.1); transition:0.3s; }
.card:hover { transform:translateY(-3px); box-shadow:0 10px 25px rgba(0,0,0,0.15); }
input, button { width:100%; padding:12px 15px; margin-bottom:12px; border-radius:8px; border:1px solid #ccc; font-size:16px; box-sizing:border-box; }
button { background:#F58220; color:#fff; border:none; cursor:pointer; transition:0.3s; }
button:hover { background:#D85C00; }
.success { color:green; text-align:center; margin-bottom:15px; font-size:14px; }
.error { color:red; text-align:center; margin-bottom:15px; font-size:14px; }
a { color:#F58220; text-decoration:none; }
a:hover { text-decoration:underline; }
@media(max-width:400px){ .container { margin:80px 10px 20px 10px; } input, button { font-size:14px; padding:10px 12px; } }

input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    box-sizing: border-box;
}

select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    box-sizing: border-box;
    appearance: none; /* remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2210%22%20height%3D%227%22%20viewBox%3D%220%200%2010%207%22%20xmlns%3D%22http://www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M0%200l5%207%205-7H0z%22%20fill%3D%22%23666%22/%3E%3C/svg%3E") no-repeat right 12px center;
    background-size: 10px 7px;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #f5f5f5; /* light grey / whitish */
    color: #333; /* dark text for contrast */
    text-align: center;
    padding: 12px 0;
    font-size: 14px;
    box-shadow: 0 -3px 10px rgba(0,0,0,0.1);
}

footer a {
    color: #002147; /* optional: make any links dark blue */
    text-decoration: none;
}

@media (max-width: 400px) {
    footer {
        font-size: 12px;
        padding: 10px 0;
    }
}
