/* google button */
.google-login-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.google-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #555;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    max-width: 260px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.google-login-btn:hover {
    background-color: #f7f7f7;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
}

.google-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

.google-text {
    white-space: nowrap;
}

/* Or line */
.divider-with-text {
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 1.5rem 0;
}

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

.divider-text {
    padding: 0 1rem;
    color: #999;
    white-space: nowrap;
    font-size: 14px;
}
