.form-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-control {
    border-radius: 5px;
    padding: 10px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: none;
}

button.btn {
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #0046b3;
    color: #fff;
}

button.btn:hover {
    background-color: #003593;
}