* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f6f8;
        background: #f4f6f8;
    }


    /* Container shared style (responsive like coppy.html) */
    .navbar {
        background-color: #1e73be;
        padding: 10px 20px;
    }

    .navbar ul {
        list-style: none;
        display: flex;
        align-items: center;
        /*color: white;*/
    }

    .navbar li {
        margin-right: 20px;
        /*font-size: 14px;
        cursor: pointer;*/
    }
    .navbar a {
        color: white;
        text-decoration: none;
        font-size: 14px;
        font-weight: bold;
    }
    .navbar a:hover {
        text-decoration: underline;
    }

    .navbar .right {
        margin-left: auto;
    }

    .container {
        width: 1500px;
        height: 600px;
        margin: 30px auto;
        background: #ffffff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .container h2 {
        text-align: center;
        margin-bottom: 12px;
        color: #c62828;
    }


/* Form grid and groups (copied/adapted from coppy.html) */
.section-header {
    background-color: #2a7aa0;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    margin-bottom: 16px;
    border-radius: 4px;
}

.checkbox {
    font-weight: normal;
    font-size: 14px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #2a7aa0;
}

.primary-btn {
    width: 100%;
    padding: 10px 14px;
    background: #c62828;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.primary-btn:hover {
    background: #a71d1d;
}

@media (max-width: 700px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .navbar ul { flex-wrap: wrap; }
}
