.login-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
}

.facebook-button, .google-button {
    display: block;
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    margin: 10px;
    transition: background-color 0.2s ease;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.facebook-button {
    background-color: #3b5998;
}

.google-button {
    background-color: #dd4b39;
}

.facebook-button:hover, .google-button:hover {
    background-color: #fff;
    color: #000;
}
