body {
    font-family: Arial, sans-serif;
    background: #f4f6f8;
}

.container {
    background: #fff;
    padding: 20px;
    margin: 20px auto;
    border-radius: 8px;
    width: 100%;
    max-width: 650px;   /* NORMAL FORM WIDTH */
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.logo {
    width: 90px;
}

h1 {
    color: #0a3d62;
}

h2, h3 {
    margin-top: 20px;
}

input, textarea, select {
    width: 50%;
    padding: 7px 9px;   /* smaller height */
    margin: 5px 0;      /* tighter spacing */
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 14px;
}

textarea {
    min-height: 60px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}


button {
    background: #0a3d62;
    color: white;
    padding: 10px;
    border: none;
    width: 50%;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
}


button:hover {
    background: #065a82;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th, table td {
    border: 1px solid #ddd;
    padding: 10px;
}

table th {
    background: #0a3d62;
    color: white;
}
