.or-divider {
    text-align: center;
    margin: 20px 0;
    font-size: 14px;
    color: gray;
    position: relative;
}

.or-divider::before,
.or-divider::after {
    content: "";
    position: absolute;
    width: 40%;
    height: 1px;
    background: gray;
    top: 50%;
}

.or-divider::before {
    left: 0;
}

.or-divider::after {
    right: 0;
}

.oauth-btn button {
    background-color: #4285F4;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    color: white;
}

.oauth-btn {
    text-decoration: none;
}

.oauth-btn img {
    width: 20px;
    height: 20px;
}

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

