/* new_record.css - Stylish, mobile-friendly, and beautiful for create_new_record.php */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f7f9fb;
    color: #222;
}
.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 32px 12px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(42,82,152,0.08);
    margin-top: 40px;
}
h1 {
    text-align: center;
    color: #2a5298;
    margin-bottom: 24px;
}
a {
    color: #2a5298;
    text-decoration: none;
    font-weight: 500;
}
a:hover {
    text-decoration: underline;
}
form {
    margin-top: 20px;
}
label {
    display: block;
    margin-bottom: 14px;
    font-weight: 500;
    color: #2a5298;
}
input[type="text"], textarea {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #bbb;
    width: 100%;
    box-sizing: border-box;
    margin-top: 4px;
    font-size: 1em;
}
textarea {
    min-height: 60px;
}
button {
    padding: 10px 22px;
    border-radius: 6px;
    border: none;
    background: #43cea2;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    font-size: 1em;
    transition: background 0.2s;
}
button:hover {
    background: #2a5298;
}
.msg {
    margin-top: 20px;
    color: green;
    text-align: center;
}
.err {
    color: #dc3545;
}
@media (max-width: 600px) {
    .container { padding: 10px 2px; margin-top: 10px; }
    h1 { font-size: 1.3em; }
    button { width: 100%; }
}
