body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center; /* وسط افقی */
    align-items: center;     /* وسط عمودی */
}

.container {
    text-align: center; /* متن و دکمه وسط‌چین */
}

.btn {
    font-size: 20px;
    padding: 12px 24px;
    text-decoration: none;
    background-color: #008CBA;
    color: white;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #005f73;
}
