
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.divider::before, .divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ccc;
}

.divider:not(:empty)::before {
    margin-right: .25em;
}

.divider:not(:empty)::after {
    margin-left: .25em;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.social-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
}

.social-buttons a img {
    margin-right: 8px;
    width: 20px;
    height: 20px;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container img {
    width: auto; /* Adjust width */
    height: auto; /* Maintain aspect ratio */
}

.social-buttons a:hover {
    background-color: #e0e0e0;
}