/* Form Layout */
form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input, textarea, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input:focus, textarea:focus, select:focus {
    border-color: #0C2B4B;
    outline: none;
}

button {
    background-color: #0C2B4B;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0C2B4B;
}

/* Responsive Design */
@media (max-width: 768px) {
    form {
        width: 100%;
        padding: 20px;
    }
}