.complaints-container {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-top: 6px solid #0dbdfe;
}

h2 {
    color: #0dbdfe;
    text-align: center;
}

label {
    display: block;
    margin-top: 15px;
    color: #222;
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

button[type="submit"] {
    background: #0dbdfe;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    margin-top: 20px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
}

button[type="submit"]:hover {
    background: #008bb9;
}

body {
    background: #f4f8fb;
    font-family: Arial, sans-serif;
}

input:focus, textarea:focus {
    border-color: #0dbdfe;
    outline: none;
} 