/* assets/css/style.css */
body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    background-color: #f4f7f6; 
    padding: 20px; 
    color: #333; 
}

.form-container { 
    max-width: 800px; 
    margin: 0 auto; 
    background: #fff; 
    padding: 30px; 
    border-radius: 8px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
}

h2 { 
    color: #0066b2; 
    border-bottom: 2px solid #0066b2; 
    padding-bottom: 10px; 
    margin-bottom: 25px; 
}

h3 { 
    font-size: 1.1em; 
    color: #555; 
    margin-top: 20px; 
    background: #eef4f8; 
    padding: 8px; 
    border-left: 4px solid #0066b2; 
}

.grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
}

.form-group { 
    display: flex; 
    flex-direction: column; 
    margin-bottom: 15px; 
}

label { 
    font-weight: 600; 
    margin-bottom: 5px; 
    font-size: 0.9em; 
}

input, select, textarea { 
    padding: 10px; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
    font-size: 1em; 
}

input:focus { 
    border-color: #0066b2; 
    outline: none; 
    box-shadow: 0 0 5px rgba(0,102,178,0.2); 
}

.full-width { 
    grid-column: span 2; 
}

button { 
    background-color: #0066b2; 
    color: white; 
    padding: 12px 25px; 
    border: none; 
    border-radius: 4px; 
    cursor: pointer; 
    font-size: 1em; 
    font-weight: bold; 
    margin-top: 20px; 
    transition: background 0.3s; 
}

button:hover { 
    background-color: #004d85; 
}