.social-login {
    margin: 20px 0;
    text-align: center;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    margin: 10px 0;
    font-weight: bold;
    transition: background-color 0.3s;
    width: 220px;
}

.btn-google {
    background-color: #4285f4;
}

.btn-google:hover {
    background-color: #357ae8;
}

.social-icon {
    margin-right: 10px;
    font-size: 18px;
}

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

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

.or-divider::before {
    margin-right: 10px;
}

.or-divider::after {
    margin-left: 10px;
}