body {
    background-color: #f2f6f9;
}

.form-container {
    max-width: 1000px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
}

.form-header {
    background: #0b5f8a;
    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    border-radius: 6px;
    margin-bottom: 25px;
    margin-top: 25px;
}

.form-control,
select,
textarea {
    background-color: #d9f1fb !important;
    border: none !important;
    border-radius: 4px;
}

.form-control:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 2px #4aa3cf;
}

.btn-info {
    background-color: #0b5f8a;
    border: none;
}

.btn-info:hover {
    background-color: #3d98c5;
}