@import url("bs.css");

.login-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--body-color-muted);
    font-size: 1rem;
    gap: 1rem;
    margin: 1rem 0;
}

.login-divider::before,
.login-divider::after {
    content: "";
    flex: 1;
    border-top: 1px solid var(--bs-border-color);
}

.google-login {
    display: flex;
    justify-content: center;
}

.google-login-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 42px;
    color: #1f1f1f;
    background-color: #fff;
    border: 1px solid #dadce0;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
}

.google-login-button:hover,
.google-login-button:focus {
    color: #1f1f1f;
    background-color: #f8fafd;
    border-color: #d2d6dc;
    text-decoration: none;
}

.google-login-button img {
    width: 20px;
    height: 20px;
}