#tos-form {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    max-width: 500px;
    margin: 50px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
}

#tos-form h2 {
    color: #2d2d2d;
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
}

#tos-form p {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

#tos-form a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

#tos-form a:hover {
    text-decoration: underline;
}

#tos-form form {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#tos-form button {
    background-color: #007bff;
    color: white;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

#tos-form button:hover {
    background-color: #0056b3;
}

#tos-form button:focus {
    outline: none;
}
