/* style.css - Responsive styles for Camp Registration System */
body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 400px;
    margin: 40px auto;
    background: #fff;
    padding: 24px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
h2 {
    margin-top: 0;
    color: #2c3e50;
}
label {
    display: block;
    margin-bottom: 12px;
    color: #333;
}
input, select, button {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
button {
    background: #2980b9;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
}
button:hover {
    background: #1a5a85;
}
.error {
    background: #ffdddd;
    color: #a00;
    padding: 8px;
    border-radius: 4px;
    margin-bottom: 12px;
}
.success {
    background: #ddffdd;
    color: #080;
    padding: 8px;
    border-radius: 4px;
    margin-bottom: 12px;
}
@media (max-width: 600px) {
    .container {
        max-width: 98vw;
        padding: 12px 4vw;
    }
    input, select, button {
        font-size: 1em;
    }
}