/* button.css */
.button-container {
    text-align: center;
    margin: 30px 0;
}

.button {
    background-color: #0b3d91;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.button:hover {
    background-color: #1c56c0;
    transform: scale(1.05);
}